Hi,
I got noise points when I try to convert pdf to jpg.
Tested OSs were Win7 and Win10
.NET target platform is .net 6.0
Using SDK: Aspose.PDF for .Net 24.6
Test code
void testToJpg(string filename)
{
// Load document
Document srcFile = new Document(filename);
using (FileStream streamObj = new FileStream(filename+".out.jpg", FileMode.Create))
{
// Create Resolution object
Resolution resolution = new Resolution(300);
// Create Image device with specified attributes
// Width, Height, Resolution
JpegDevice renderToImages = new JpegDevice(500, 700, resolution);
// For BMP, PNG, TIFF it will be BmpDevice, PngDevice, TiffDevice respectively
// Convert a particular page and save the image to stream
renderToImages.Process(srcFile.Pages[1], streamObj);
// Close stream
streamObj.Close();
}
}
@kngstr
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.
Issue ID(s): PDFNET-57568
You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.
@kngstr
As far as I remember, the problem with Aspose.Pdf remained. But since in the future it is planned to use the variant with Drawing as the main and only one, the developers decided that the task can be closed.