Dear Team,
I am using Aspose.PSD to load .Psb file which is 18 gb. Its giving exception Image loading failed. Is there any size limitation. Following is my Dot net code :
PsdLoadOptions loadOptions = new PsdLoadOptions()
{
LoadEffectsResource = true,
UseDiskForLoadEffectsResource = true
};
// Added on 11-7-2019, Using Aspose.Pdf
// Load a PSD file as an image and cast it into PsdImage
using (var psd = Aspose.PSD.Image.Load(strSourceTreePath, loadOptions))
{
psd.Save(strTreePath, new Aspose.PSD.ImageOptions.TiffOptions(Aspose.PSD.FileFormats.Tiff.Enums.TiffExpectedFormat.TiffLzwCmyk)); //.TiffLzwCmyk));
}
Regards
XCoder