I am loading a psd file of size 100 MB in my asp.net project and making changes in that psd image.Then saving that psd file in another location.But it is taking too much time for this process.Is there any way to make it fast.
using (var image = (PsdImage)Aspose.PSD.Image.Load(“image1.psd”))
{
image.Layers[0].IsVisible = true;
image.Layers[20].IsVisible = true;
image.Save(outputFilePath);
}