Hi,
I am converting PDFs to image with the following code:
using (var image = pdfDocument.SaveAsImage(i))
{
using (var imageStream = new MemoryStream())
{
image.Save(imageStream, System.Drawing.Imaging.ImageFormat.Png);
newPicture.FileBinary = CommonConverterUtility.StreamToByteArray(imageStream);
}
}
However when there is any text highlighted, in the image the Text can't be read, because all text is behind the highligting.
Please fix this (also tested in the new version)
Best,