将图层组导出为图像

将图层组导出为图像

Aspose.PSD支持将图层组导出为图像。为此,API提供了LayerGroup类。

以下代码片段演示了如何将图层组导出为图像。

// For complete examples and data files, please go to https://github.com/aspose-psd/Aspose.PSD-for-Java
PsdImage psdImage = null;
try {
psdImage = (PsdImage) Image.load(sourceDir + "ExportLayerGroupToImageSample.psd");
// folder with background
LayerGroup bgFolder = (LayerGroup) psdImage.getLayers()[0];
// folder with content
LayerGroup contentFolder = (LayerGroup) psdImage.getLayers()[4];
bgFolder.save(outputDir + "background.png", new PngOptions());
contentFolder.save(outputDir + "content.png", new PngOptions());
} finally {
if (psdImage != null) psdImage.dispose();
}