When I set the text direction to tbrl in Word and converted it to PDF using aspose Word, the text direction changed in the converted PDF. The following is the code used
test.docx (10.5 KB)
test.pdf (51.2 KB)
Document doc = new Document("D:\\test\\pdf\\test.docx");
PdfSaveOptions saveOptions = new PdfSaveOptions();
doc.save("D:\\test\\pdf\\test.pdf", saveOptions);
aspose Word version:23.10
Can anyone help me see what the problem is?