Notas de Lançamento do Aspose.PSD para Java 21.7
Contents
[
Hide
]
Esta página contém notas de lançamento para o Aspose.PSD para Java 21.7
Chave | Resumo | Categoria |
---|---|---|
PSDJAVA-362 | Suporte para a edição de fontes usando TextPortions | Recurso |
PSDJAVA-363 | Aspose.PSD 21.6: ImageSaveException ao tentar converter PSD para PNG | Erro |
Alterações na API Pública
APIs Adicionadas:
- M:com.aspose.psd.fileformats.psd.layers.text.ITextStyle.getFontName
- M:com.aspose.psd.fileformats.psd.layers.text.ITextStyle.setFontName(java.lang.String)
- M:com.aspose.psd.FontSettings.getAdobeFontName(java.lang.String)
APIs Removidas:
- Nenhuma
Exemplos de Uso:
PSDJAVA-362. Suporte para a edição de fontes usando TextPortions
String outputFilePng = "resultado_fontEditTest.png";
String outputFilePsd = "fontEditTest.psd";
PsdImage image = new PsdImage(500, 500);
try {
FillLayer backgroundFillLayer = FillLayer.createInstance(FillType.Color);
((IColorFillSettings) backgroundFillLayer.getFillSettings()).setColor(Color.getWhite());
image.addLayer(backgroundFillLayer);
TextLayer textLayer = image.addTextLayer("Texto 1", new Rectangle(10, 35, image.getWidth(), 35));
ITextPortion firstPortion = textLayer.getTextData().getItems()[0];
firstPortion.getStyle().setFontName(FontSettings.getAdobeFontName("Comic Sans MS"));
ITextPortion secondPortion = textLayer.getTextData().producePortion();
secondPortion.setText("Texto 2");
secondPortion.getParagraph().apply(firstPortion.getParagraph());
secondPortion.getStyle().apply(firstPortion.getStyle());
secondPortion.getStyle().setFontName(FontSettings.getAdobeFontName("Arial"));
textLayer.getTextData().addPortion(secondPortion);
textLayer.getTextData().updateLayerData();
image.save(outputFilePng, new PngOptions());
image.save(outputFilePsd);
} finally {
image.dispose();
}
PsdImage imageOutput = (PsdImage) Image.load(outputFilePsd);
try {
TextLayer textLayer = (TextLayer) imageOutput.getLayers()[2];
String adobeFontName1 = FontSettings.getAdobeFontName("Comic Sans MS");
String adobeFontName2 = FontSettings.getAdobeFontName("Arial");
AssertAreEqual(adobeFontName1, textLayer.getTextData().getItems()[0].getStyle().getFontName());
AssertAreEqual(adobeFontName2, textLayer.getTextData().getItems()[1].getStyle().getFontName());
} finally {
imageOutput.dispose();
}
PSDJAVA-363. Aspose.PSD 21.6: ImageSaveException ao tentar converter PSD para PNG
String srcFile = "entrada.psd";
String output = "saida.png";
Image image = Image.load(srcFile);
try {
image.save(output, new PngOptions());
} finally {
image.dispose();
}