Hi.
I have a document with mixed text(English and Arabic).
And when I convert this document to pdf, mixed text in TOC, changes direction.
Simple code for test:
Summary
Document doc = new Document(“document.docx”);
using (var stream = File.Create(“test.pdf”))
{
doc.Save(stream, SaveFormat.Pdf);
}
docs.zip (238.6 KB)
I am using Aspose.Words version 16.2.0
Is this a known issue?
Maybe it was fixed in new versions?