I seem to be able to image PowerPoint pages to JPG using the Aspose.Drawing cross-platform replacement for System.Drawing. The sample code suggests pulling a Bitmap using slide.GetThumbnail and then using the Bitmap Save() method to output the page in the desired image format.
Sample:
slideImage.Save(imageStream, System.Drawing.Imaging.ImageFormat.Jpeg);
I would like to have some control over the Jpeg quality, such as the control Quality/JpegQuality save options provided by some of the other Aspose libraries (Word/Cells).
This would traditionally be done with something like this:
slideImage.Save(imageStream, jpegCodec, encoderParameters);
But that doesn’t work. There don’t appear to be any encoder options in the Aspose.Drawing.
Is there any way to set Jpeg Quality when performing a Bitmap Save() to a Jpeg format?