Notas de la versión de Aspose.PSD para .NET 23.7
Clave | Resumen | Categoría |
---|---|---|
PSDNET-802 | Agregar capacidad para exportar cada capa de un archivo PSD al archivo Gif animado | Característica |
PSDNET-1441 | Asignar propiedad de relleno de la capa de forma desde el recurso vscg | Característica |
PSDNET-1534 | Agregar nuevos tipos de deformación (arco y arco) | Característica |
PSDNET-1543 | Cambiar la aplicación que guarda el archivo PSD a Aspose.PSD si la propiedad UpdateMetadata está en true | Característica |
PSDNET-1567 | Aumentar el área de cálculo de la imagen deformada | Característica |
PSDNET-1471 | La capa de ajuste en blanco y negro procesa la semitransparencia de manera incorrecta | Error |
PSDNET-1505 | SmartObject ReplaceContents (cuando las opciones AllowWarpRepaint están activas) falla después de 2 minutos de cálculos | Error |
PSDNET-1585 | Añadir capacidad para obtener la verdadera posición Izquierda y Superior del Grupo de Capas | Error |
PSDNET-1589 | El cambio de tamaño de la capa funciona incorrectamente cuando el archivo psd tiene VogkResource con estructuras en puntos | Error |
PSDNET-1608 | TextBound no funciona como se espera | Error |
PSDNET-1612 | Agregar una capa creada con el constructor predeterminado a la imagen PSD no añade recursos predeterminados a ésta | Error |
PSDNET-1623 | Timeline.LoopesCount es ignorado al exportar a GIF animado | Error |
Cambios en la API pública
APIs añadidas:
- P:Aspose.PSD.ImageOptions.PsdOptions.UpdateMetadata
- F:Aspose.PSD.FileFormats.Ai.AiFormatVersion.Pdf16
- F:Aspose.PSD.FileFormats.Ai.AiFormatVersion.Pdf17
- P:Aspose.PSD.Xmp.Schemas.XmpBaseSchema.XmpBasicPackage.Item(System.String)
- M:Aspose.PSD.Xmp.Schemas.XmpBaseSchema.XmpBasicPackage.SetValue(System.String,Aspose.PSD.Xmp.IXmlValue)
- M:Aspose.PSD.Xmp.Schemas.XmpBaseSchema.XmpBasicPackage.ContainsKey(System.String)
- P:Aspose.PSD.FileFormats.Psd.Layers.ShapeLayer.Fill
APIs eliminadas:
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerResources.VectorPath.FillColor
Ejemplos de uso:
PSDNET-802. Agregar capacidad para exportar cada capa de un archivo PSD al archivo Gif animado
string src = "EachLayerIsFrame.psd";
string outputGif = "out_EachLayerIsFrame.gif";
string outputPsd = "out_EachLayerIsFrame.psd";
using (var psdImage = (PsdImage)Image.Load(src))
{
// Crear frames para cada capa.
int framesCount = psdImage.Layers.Length;
var timeline = psdImage.Timeline;
Frame[] frames = new Frame[framesCount];
for (int i = 0; i < framesCount; i++)
{
frames[i] = new Frame();
LayerState[] layerStates = new LayerState[framesCount];
for (int j = 0; j < framesCount; j++)
{
layerStates[j] = new LayerState();
layerStates[j].Enabled = i == j;
}
frames[i].LayerStates = layerStates;
}
timeline.Frames = frames;
// Actualizar estados actuales
Layer[] layers = psdImage.Layers;
LayerState[] states = timeline.Frames[timeline.ActiveFrameIndex].LayerStates;
for (int i = 0; i < framesCount; i++)
{
layers[i].IsVisible = states[i].Enabled;
}
timeline.Save(outputGif, new GifOptions());
psdImage.Save(outputPsd);
}
PSDNET-1441. Asignar propiedad de relleno de la capa de forma desde el recurso vscg
string srcFile = "ShapeInternalSolid.psd";
string outFile = "ShapeInternalSolid.psd.out.psd";
using (PsdImage image = (PsdImage)Image.Load(
srcFile,
new PsdLoadOptions { LoadEffectsResource = true }))
{
ShapeLayer shapeLayer = (ShapeLayer)image.Layers[1];
ColorFillSettings fillSettings = (ColorFillSettings)shapeLayer.Fill;
fillSettings.Color = Color.Red;
shapeLayer.Update();
image.Save(outFile);
}
// Verificar cambios guardados
using (PsdImage image = (PsdImage)Image.Load(
outFile,
new PsdLoadOptions { LoadEffectsResource = true }))
{
ShapeLayer shapeLayer = (ShapeLayer)image.Layers[1];
ColorFillSettings fillSettings = (ColorFillSettings)shapeLayer.Fill;
AssertAreEqual(Color.Red, fillSettings.Color);
image.Save(outFile);
}
void AssertAreEqual(object expected, object actual, string message = null)
{
if (!object.Equals(expected, actual))
{
throw new Exception(message ?? "Los objetos no son iguales.");
}
}
PSDNET-1471. La capa de ajuste en blanco y negro procesa la semitransparencia de manera incorrecta
string srcFile = "frog_nosymb.psd";
string outFile = "frog_nosymb.psd.out.psd";
using (PsdImage psdImage = (PsdImage)Image.Load(srcFile))
{
psdImage.AddBlackWhiteAdjustmentLayer();
psdImage.Save(outFile);
}
// Verificar cambios guardados
using (PsdImage image = (PsdImage)Image.Load(
outFile,
new PsdLoadOptions { LoadEffectsResource = true }))
{
AssertAreEqual(2, image.Layers.Length);
BlackWhiteAdjustmentLayer blackWhiteAdjustmentLayer = (BlackWhiteAdjustmentLayer)image.Layers[1];
if (blackWhiteAdjustmentLayer == null)
{
throw new Exception("La capa 2 debería ser BlackWhiteAdjustmentLayer");
}
image.Save(outFile);
}
void AssertAreEqual(object expected, object actual, string message = null)
{
if (!object.Equals(expected, actual))
{
throw new Exception(message ?? "Los objetos no son iguales.");
}
}
PSDNET-1505. SmartObject ReplaceContents (cuando las opciones AllowWarpRepaint están activas) falla después de 2 minutos de cálculos
string sourceFile = "mug 4.psd";
string changeFile = "artwork for replace.png";
string outputFile = "export.png";
int newHeight = 300;
using (var psdImage = (PsdImage)Image.Load(sourceFile, new PsdLoadOptions() { AllowWarpRepaint = true, LoadEffectsResource = true }))
{
SmartObjectLayer smartObjectLayer = (SmartObjectLayer)psdImage.Layers[3];
var scale = (double)newHeight / smartObjectLayer.Height;
var newWidth = (int)Math.Round(smartObjectLayer.Width * scale);
PsdImage innerImage = new PsdImage(newWidth, newHeight);
innerImage.SetResolution(72, 72);
Stream innerStream = new FileStream(changeFile, FileMode.Open);
Layer layer = new Layer(innerStream) { HorizontalResolution = 72, VerticalResolution = 72 };
try
{
innerImage.AddLayer(layer);
smartObjectLayer.ReplaceContents(innerImage);
smartObjectLayer.UpdateModifiedContent();
psdImage.Save(outputFile, new PngOptions
{
ColorType = PngColorType.TruecolorWithAlpha
});
}
finally
{
innerImage.Dispose();
innerStream.Dispose();
layer.Dispose();
}
}
PSDNET-1534. Agregar nuevos tipos de deformación (arco y arco)
string sourceArcFile = "arc_warp.psd";
string outputArcFile = "arc_export.png";
string sourceArchFile = "arch_warp.psd";
string outputArchFile = "arch_export.png";
using (var psdImage = (PsdImage)Image.Load(sourceArcFile, new PsdLoadOptions() { AllowWarpRepaint = true, LoadEffectsResource = true }))
{
psdImage.Save(outputArcFile, new PngOptions
{
ColorType = PngColorType.TruecolorWithAlpha
});
}
using (var psdImage = (PsdImage)Image.Load(sourceArchFile, new PsdLoadOptions() { AllowWarpRepaint = true, LoadEffectsResource = true }))
{
psdImage.Save(outputArchFile, new PngOptions
{
ColorType = PngColorType.TruecolorWithAlpha
});
}
PSDNET-1543. Cambiar la aplicación que guarda el archivo PSD a Aspose.PSD si la propiedad UpdateMetadata está en true
string path = "output.psd";
using (var image = new PsdImage(100, 100))
{
// Si desea que la herramienta creadora cambie, asegúrese de que la propiedad "UpdateMetadata" esté en true. Está configurada en true por defecto.
var psdOptions = new PsdOptions();
psdOptions.UpdateMetadata = true;
// Guardar la imagen.
image.Save(path, psdOptions);
// Verificar la herramienta creadora en el código.
var xmpData = image.XmpData;
var basicPackage = image.XmpData.GetPackage(Namespaces.XmpBasic);
// Aquí se actualizará la información de la herramienta creadora.
var currentCreatorTool = (string)basicPackage[":CreatorTool"];
}
PSDNET-1567. Aumentar el área de cálculo de la imagen deformada
string sourceFile = "mug4_warp.psd";
string outputFile = "mug4_export.png";
using (var psdImage = (PsdImage)Image.Load(sourceFile, new PsdLoadOptions() { AllowWarpRepaint = true, LoadEffectsResource = true }))
{
psdImage.Save(outputFile, new PngOptions
{
ColorType = PngColorType.TruecolorWithAlpha
});
}
PSDNET-1585. Agregar capacidad para obtener la verdadera posición Izquierda y Superior del Grupo de Capas
string sourceFile = "layerGroupFigures.psd";
void AssertAreEqual(object expected, object actual)
{
if (!object.Equals(expected, actual))
{
throw new Exception("Los objetos no son iguales.");
}
}
using (var image = (PsdImage)Image.Load(sourceFile))
{
var layers = image.Layers;
for (int i = 0; i < layers.Length; i++)
{
var layer = layers[i];
if (layer is LayerGroup)
{
// Obtener LayerGroup.
var group = (LayerGroup)layer;
var expectedLeft = int.MaxValue;
var expectedTop = int.MaxValue;
var expectedRight = 0;
var expectedBottom = 0;
// Calcular las posiciones reales de Izquierda, Superior, Derecha y Abajo.
foreach (var innerLayer in group.Layers)
{
if (innerLayer is AdjustmentLayer || innerLayer.Bounds.IsEmpty)
{
continue;
}
expectedLeft = Math.Min(expectedLeft, innerLayer.Left);
expectedTop = Math.Min(expectedTop, innerLayer.Top);
expectedRight = Math.Max((expectedLeft + group.Width), (innerLayer.Left + innerLayer.Width));
expectedBottom = Math.Max((expectedTop + group.Height), (innerLayer.Top + innerLayer.Height));
}
// Las posiciones Izquierda, Superior, Derecha y Abajo del LayerGroup se calculan correctamente ahora.
AssertAreEqual(group.Left, expectedLeft);
AssertAreEqual(group.Top, expectedTop);
AssertAreEqual(group.Right, expectedRight);
AssertAreEqual(group.Bottom, expectedBottom);
}
}
}
PSDNET-1589. El cambio de tamaño de la capa funciona incorrectamente cuando el archivo PSD tiene VogkResource con estructuras en puntos
string[] sourceFiles = new string[]
{
"PointsVectorOrigin.psd",
"TopVogkResStruct.psd"
};
foreach (string sourceFile in sourceFiles)
{
using (PsdImage image = (PsdImage)Image.Load(sourceFile))
{
Layer layer = image.Layers[0];
layer.Resize(50, 50);
AssertAreEqual(layer.Height, 50);
AssertAreEqual(layer.Width, 50);
}
}
void AssertAreEqual(object expected, object actual, string message = null)
{
if (!object.Equals(expected, actual))
{
throw new Exception(message ?? "Los objetos no son iguales.");
}
}
PSDNET-1608. TextBound no funciona como se espera
string sourceFile = "input_Test_forTicket.psd";
string outFile = "out_1608.psd";
Size newTextBox = new Size(-1, -1);
using (PsdImage psdImage = (PsdImage)Aspose.PSD.Image.Load(sourceFile))
{
//Paso: Reemplazar texto
TextLayer textLayer = (TextLayer)psdImage.Layers[3];
textLayer.TextData.Items[0].Text = "Text test replaced";
//Paso: Actualizar TextBoundBox
textLayer.TextData.UpdateLayerData();
newTextBox = new Size((int)Math.Ceiling(textLayer.TextBoundBox.Width), textLayer.Height);
textLayer.TextBoundBox = new Aspose.PSD.RectangleF(PointF.Empty, newTextBox);
textLayer.TextData.UpdateLayerData();
psdImage.Save(outFile);
}
// Verificar cambios
using (var psdImage = (PsdImage)Image.Load(outFile))
{
Txt2Resource txt2Resource = (Txt2Resource)psdImage.GlobalLayerResources[1];
string textData = Encoding.GetEncoding("Windows-1251").GetString(txt2Resource.Data);
string search = "<< /0 << /1 << /0 ["; // conjunto de caracteres específico para encontrar el valor del cuadro de texto en este archivo.
int startIndex = textData.IndexOf(search) + search.Length;
int endIndex = textData.IndexOf("]", startIndex);
string boxItems = textData.Substring(startIndex, endIndex - startIndex);
string height = newTextBox.Height.ToString("0.0####").Replace(",", ".");
string width = newTextBox.Width.ToString("0.0####").Replace(",", ".");
if (!boxItems.Contains(height) || !boxItems.Contains(width))
{
throw new Exception("El cuadro de texto no se actualizó.");
}
}
PSDNET-1612. Agregar una capa creada con el constructor predeterminado a la imagen PSD no añade recursos predeterminados a ésta
string output = "newLayer.psd";
using (var psdImage = new PsdImage(500, 500))
{
var layer = new Layer();
psdImage.AddLayer(layer);
LyidResource lyidResource = (LyidResource)FindResource(LyidResource.TypeToolKey, layer.Resources);
int layerId = lyidResource.Value; // Ocurrió una NullReferenceException
psdImage.Save(output);
}
LayerResource FindResource(int resType, LayerResource[] resources)
{
if (resources != null)
{
foreach (var layerResource in resources)
{
if (layerResource.Key == resType)
{
return layerResource;
}
}
}
return null;
}
PSDNET-1623. Timeline.LoopesCount es ignorado al exportar a GIF animado
string sourceFile = "4_animated.psd";
string outputGif = "out_4_animated.psd.gif";
using (var psdImage = (PsdImage)Image.Load(sourceFile, new PsdLoadOptions() { LoadEffectsResource = true }))
{
psdImage.Timeline.Save(outputGif, new GifOptions());
}