OutOfMemoryException and GDI+ Exceptions Are Thrown in Aspose.Slides 21.11

We had same error. Following code worked for us.

var loadOptions = new Aspose.Slides.LoadOptions();
loadOptions.BlobManagementOptions.IsTemporaryFilesAllowed = true;
loadOptions.BlobManagementOptions.TempFilesRootPath = temp_folder;
using (var ppt = new Aspose.Slides.Presentation(filePath, loadOptions))
{
	 .....................
}

@Chiman,
Thank you for the comment. If you have any problems using Aspose.Slides, please create a new forum thread.