The word conversion of a pdf file has an element printed inline with another element despite the pdf displaying them on separate lines. Please see item 14 in the attached files:
Input file:
Billings Sept 17th Post Minutes Package.pdf (471.7 KB)
Output File:
Billings PostMinutes - Package Council Meeting_Sep17_2024 (2) (1).docx (56.9 KB)
@aLovrickEscribe I cannot reproduce the problem on my side using the latest 24.9 version of Aspose.Words and the following simple code:
Document doc = new Document(@"C:\Temp\in.docx");
doc.Save(@"C:\Temp\out.pdf");
out.pdf (89.9 KB)
The problem on your side might occur because the fonts used in your input document are not available on the machine where document is processed. The fonts are required to build document layout. If Aspose.Words cannot find the font used in the document, the font is substituted . This might lead into fonts mismatch and document layout differences due to the different fonts metrics. You can implement IWarningCallback to get notifications when font substitution is performed.
Please see our documentation to learn where Aspose.Words looks for fonts:
https://docs.aspose.com/words/net/specifying-truetype-fonts-location/