Hi,
I’m testing the free version for a Maui project on Windows and MacOS.
On Windows the ‘save as Jpeg’ is just working fine.
On the Mac I get the following exception:
GemBox.Pdf 1.7 for .NET Standard 2.0 does not support Image saving.
// Load a PDF document. using (var document = GemBox.Pdf.PdfDocument.Load(filepath)) { // Create image save options. var imageOptions = new GemBox.Pdf.ImageSaveOptions(GemBox.Pdf.ImageSaveFormat.Jpeg) { PageNumber = 0, // Select the first PDF page. Width = 1240 // Set the image width and keep the aspect ratio. }; // Save a PDF document to a JPEG file. document.Save(filepath + ".jpg", imageOptions); };
Any clue?
Regards,
Michael