Save PDF as JPEG

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

Hi Michael,

Yes, I’m afraid that GemBox components currently don’t have cross-platform support for saving to image formats.

We do plan to introduce this feature in the current roadmap, but at the moment I don’t have any release dates to share.
Nevertheless, please feel free to vote for this feature request and subscribe to it in order to get notified when it’s completed:
https://support.gemboxsoftware.com/community/view/support-for-saving-to-image-format-in-net-standard-2-0

Regards,
Mario