이미지로 레이어 그룹 내보내기

이미지로 레이어 그룹 내보내기

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();
}