Loading PSD file taking more time

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

@coolpex

Hello. At this moment improvement of saving performance is available in read-only mode only PsdLoadOptions.ReadOnlyMode | Aspose.PSD for .NET API Reference

We created an issue PSDNET-1027. Investigate ways to improve Aspose.PSD Save Performance in the Edit Mode. You can track it.

We permanently work in the direction of the performance improvement, but it’s a complex task, that can not be done quickly.

Thank you for your feedback.