@judiciary I have checked conversion on my side and cannot reproduce the problem neither with the latest 22.4 version nor with 19.9 version of Aspose.Words.
I have noticed fonts used in the document are substituted in your output document. Maybe this causes the problem on my side. Please try using the following code:
Document doc = new Document("C:\\Temp\\in.doc");
doc.setWarningCallback(new FontSubstitutionWarningCollector());
doc.save("C:\\Temp\\out.pdf");
private static class FontSubstitutionWarningCollector implements IWarningCallback
{
public void warning(WarningInfo info)
{
if (info.getWarningType() == WarningType.FONT_SUBSTITUTION)
System.out.println(info.getDescription());
}
}