Hello
I have an issue when converting a Word file to PDF and images are placed at the bottom of a page they are not correctly displayed.
Using the latest version(28.2.11)
using following code to convert to pdf
public static byte[] ToPdf(this WordDocument wordDocument)
{
var render = new DocIORenderer();
var pdfDocument = render.ConvertToPDF(wordDocument);
var ms = new MemoryStream();
pdfDocument.Save(ms);
return ms.ToArray();
}
Attachment:
data_9b7b1907.zip