Convert EPS to psd
Contents
[
Hide
]
Convert EPS to psd
Using Aspose.Imaging we can convert EPS file to Psd.
The following code snippet shows you how to convert EPS to Psd.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.aspose.imaging.Image; | |
import com.aspose.imaging.imageoptions.PsdOptions; | |
try (com.aspose.imaging.fileformats.eps.EpsImage image = (com.aspose.imaging.fileformats.eps.EpsImage)Image.load("Rings.eps")) | |
{ | |
PsdOptions options = new PsdOptions(); | |
image.save(@"Rings.psd", options); | |
} |