AposePDF.Net Linux

I try to realize a Poc on linux , and when use this code

            using var document = new Aspose.Pdf.Document(pdfFile);
            var pngDevice = new Aspose.Pdf.Devices.JpegDevice()
            {

            };

            using var pngStream = new FileStream(imgFile, FileMode.Create);
            // Convert page to PNG image
            pngDevice.Process(document.Pages[1], pngStream);

I have a message say System.Drawin is window-only

But your a create Apsose.Drawing , but is not use in AposePDF.NET ?

@yannickcoleno

Instead of using Aspose.PDF for .NET, we recommend using Aspose.Pdf.Drawing in Linux like environments as this does not have any dependency on System.Drawing.Common. Therefore, we request you please install Aspose.Pdf.Drawing for .NET and remove existing Aspose.PDF for .NET package from your solution. In case you still notice any issues, please let us know.