Convert EPS to psd

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.

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