Aspose.PSD for .NET 21.6 - Release Notes
Contents
[
Hide
]
This page contains release notes for Aspose.PSD for .NET 21.6
Key | Summary | Category |
---|---|---|
PSDNET-546 | Сlipping mask for a group does not render correctly | Bug |
PSDNET-547 | Regular or vector mask for a layer group is ignored on rendering | Bug |
PSDNET-647 | PSD image with disabled vector layer masks on saving enables vector masks | Bug |
PSDNET-786 | Exception when creating a TextLayer with text longer than 255 characters | Bug |
PSDNET-900 | Text of the Text layer can not be rendered on Linux | Enhancement |
Public API Changes
Added APIs:
- None
Removed APIs:
- None
Usage examples:
PSDNET-546. Сlipping mask for a group does not render correctly
string sourceFileName = "AppleClip.psd";
string outputFileName = "result.png";
using (PsdImage image = (PsdImage)Image.Load(sourceFileName))
{
image.Save(outputFileName, new PngOptions());
}
PSDNET-547. Regular or vector mask for a layer group is ignored on rendering
string sourceFileName = "Stripes3Mask.psd";
string outputFileName = "OutputStripes3Mask.png";
using (PsdImage image = (PsdImage)Image.Load(sourceFileName))
{
image.Save(outputFileName, new PngOptions());
}
PSDNET-647. PSD image with disabled vector layer masks on saving enables vector masks
string sourceFileName = "FourWithMasksVd.psd";
string outputFileName = "FourWithMasksVdOutput.psd";
using (PsdImage image = (PsdImage)Image.Load(sourceFileName))
{
image.Save(outputFileName);
}
PSDNET-786. Exception when creating a TextLayer with text longer than 255 characters
string output = "output.psd";
using (var image = new PsdImage(100, 100))
{
string text = new string('a', 256);
image.AddTextLayer(text, Rectangle.Empty);
image.Save(output);
}