When i use aspose to convert a pdf to image, it adds white lines to the image.
See below.
after
image.jpg (38.6 KB)
before:
image.jpg (75.3 KB)
Here is the code used to convert
var imageDevice = new PngDevice();
documentBuilder.Font.Color = Color.Blue;
documentBuilder.Font.Size = 8;
using(var stream = new MemoryStream())
{
foreach(var page in pdfDoc.Pages)
{
imageDevice.Process(page, stream);
}
}