I am unable to match MS Word hyphenation after DOCX to PDF Conversion. I have tried few dictionaries including
https://github.com/aspose-words/Aspose.Words-for-.NET/blob/master/Examples/Data/hyph_en_US.dic
https://github.com/LibreOffice/dictionaries/blob/master/en/hyph_en_US.dic
Are there any other options other than modifying the hyph_en_US.dic file?
sample.docx (31.9 KB)
DOCX to PDF Conversion with Automatic Hyphenation
new License().SetLicense("Aspose.Words.lic");
Hyphenation.RegisterDictionary("en-US", "hyph_en_US_11388.dic");
var doc = new Document(path);
doc.Save(path + ".pdf");