Aspose.PSD for .NET 23.7 - Release Notes
Key | Summary | Category |
---|---|---|
PSDNET-802 | Add ability to Export each layer of PSD File to the Animated Gif File | Feature |
PSDNET-1441 | Assign Fill property of Shape layer form vscg resource | Feature |
PSDNET-1534 | Add new types of warp (arc & arch) | Feature |
PSDNET-1543 | Change the application that saves the PSD File to Aspose.PSD if property UpdateMetadata is set to true | Feature |
PSDNET-1567 | Increase the calculation area of the warp image | Feature |
PSDNET-1471 | Black and white adjustment Layer processes semi-transparency wrong | Bug |
PSDNET-1505 | SmartObject ReplaceContents (when the AllowWarpRepaint options is active) falls after 2 minutes of computing | Bug |
PSDNET-1585 | Add ability to get the real LayerGroup Left and Top position | Bug |
PSDNET-1589 | Resize of the layer works wrong when psd file has VogkResource with structures in points | Bug |
PSDNET-1608 | TextBound is not working as expected | Bug |
PSDNET-1612 | Adding a layer created with default constructor to PSD image does not add default resources to it | Bug |
PSDNET-1623 | Timeline.LoopesCount is ignored when exporting to animated GIF | Bug |
Public API Changes
Added APIs:
- 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
Removed APIs:
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerResources.VectorPath.FillColor
Usage examples:
PSDNET-802. Add ability to Export each layer of PSD File to the Animated Gif File
string src = "EachLayerIsFrame.psd";
string outputGif = "out_EachLayerIsFrame.gif";
string outputPsd = "out_EachLayerIsFrame.psd";
using (var psdImage = (PsdImage)Image.Load(src))
{
// Create frames for each layer.
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;
// Update current states
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. Assign Fill property of Shape layer form vscg resource
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);
}
// Check saved changes
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 ?? "Objects are not equal.");
}
}
PSDNET-1471. Black and white adjustment Layer processes semi transparency wrong
string srcFile = "frog_nosymb.psd";
string outFile = "frog_nosymb.psd.out.psd";
using (PsdImage psdImage = (PsdImage)Image.Load(srcFile))
{
psdImage.AddBlackWhiteAdjustmentLayer();
psdImage.Save(outFile);
}
// Check saved changes
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("Layer 2 should be BlackWhiteAdjustmentLayer");
}
image.Save(outFile);
}
void AssertAreEqual(object expected, object actual, string message = null)
{
if (!object.Equals(expected, actual))
{
throw new Exception(message ?? "Objects are not equal.");
}
}
PSDNET-1505. SmartObject ReplaceContents (when the AllowWarpRepaint options is active) falls after 2 minutes of computing
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. Add new types of warp (arc & arch)
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. Change the application that saves the PSD File to Aspose.PSD if property UpdateMetadata is set to true
string path = "output.psd";
using (var image = new PsdImage(100, 100))
{
// If you want the creator tool to change, make sure that the "UpdateMetadata" property is set to true. It's set to true by default.
var psdOptions = new PsdOptions();
psdOptions.UpdateMetadata = true;
// Saving the image.
image.Save(path, psdOptions);
// Checking creator tool in code.
var xmpData = image.XmpData;
var basicPackage = image.XmpData.GetPackage(Namespaces.XmpBasic);
// Here will be updated creator tool info.
var currentCreatorTool = (string)basicPackage[":CreatorTool"];
}
PSDNET-1567. Increase the calculation area of the warp image
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. Add ability to get the real LayerGroup Left and Top position
string sourceFile = "layerGroupFigures.psd";
void AssertAreEqual(object expected, object actual)
{
if (!object.Equals(expected, actual))
{
throw new Exception("Objects are not equal.");
}
}
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)
{
// Getting LayerGroup.
var group = (LayerGroup)layer;
var expectedLeft = int.MaxValue;
var expectedTop = int.MaxValue;
var expectedRight = 0;
var expectedBottom = 0;
// Calculating real Left, Top, Right, and Bottom positions.
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));
}
// LayerGroup Left, Top, Right, and Bottom positions are calculated properly now.
AssertAreEqual(group.Left, expectedLeft);
AssertAreEqual(group.Top, expectedTop);
AssertAreEqual(group.Right, expectedRight);
AssertAreEqual(group.Bottom, expectedBottom);
}
}
}
PSDNET-1589. Resize of the layer works wrong when psd file has VogkResource with structures in points
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 ?? "Objects are not equal.");
}
}
PSDNET-1608. TextBound is not working as expected
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))
{
//Step: Replace text
TextLayer textLayer = (TextLayer)psdImage.Layers[3];
textLayer.TextData.Items[0].Text = "Text test replaced";
//Step: Update 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);
}
// Check changes
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 ["; // specific character set to find textBox value in this file.
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("TextBox not updated.");
}
}
PSDNET-1612. Adding a layer created with default constructor to PSD image does not add default resources to it
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; // Was 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 is ignored when exporting to animated GIF
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());
}