Catatan Rilis Aspose.PSD untuk Java 21.6
Contents
[
Hide
]
Halaman ini berisi catatan rilis untuk Aspose.PSD untuk Java 21.6
Kunci | Ringkasan | Kategori |
---|---|---|
PSDJAVA-351 | Сlipping mask for a group does not render correctly | Bug |
PSDJAVA-352 | Regular or vector mask for a layer group is ignored on rendering | Bug |
PSDJAVA-353 | PSD image with disabled vector layer masks on saving enables vector masks | Bug |
PSDJAVA-354 | Exception when creating a TextLayer with text longer than 255 characters | Bug |
Perubahan API Publik
API Ditambahkan:
- Tidak ada
API Dihapus:
- Tidak ada
Contoh Penggunaan:
PSDJAVA-351. Сlipping mask for a group does not render correctly
String sourceFileName = "AppleClip.psd";
String outputFileName = "result.png";
PsdImage image = (PsdImage) Image.load(sourceFileName);
try
{
image.save(outputFileName, new PngOptions());
}finally {
image.dispose();
}
PSDJAVA-352. Regular or vector mask for a layer group is ignored on rendering
String sourceFileName = "Stripes3Mask.psd";
String outputFileName = "OutputStripes3Mask.png";
PsdImage image = (PsdImage)Image.load(sourceFileName);
try
{
image.save(outputFileName, new PngOptions());
}finally {
image.dispose();
}
PSDJAVA-353. PSD image with disabled vector layer masks on saving enables vector masks
String sourceFileName = "FourWithMasksVd.psd";
String outputFileName = "FourWithMasksVdOutput.psd";
PsdImage image = (PsdImage) Image.load(sourceFileName);
try
{
image.save(outputFileName);
}finally {
image.dispose();
}
PSDJAVA-354. Exception when creating a TextLayer with text longer than 255 characters
String output = "output.psd";
PsdImage image = new PsdImage(100, 100);
try
{
char[] chars = new char[256];
Arrays.fill(chars, '*');
String text = new String(chars);
image.addTextLayer(text, Rectangle.getEmpty());
image.save(output);
}finally {
image.dispose();
}