docs-to-pdf-converter
docs-to-pdf-converter copied to clipboard
Arabic text
I faced some issues with converting Arabic docx files it should be from right to left but it generated from left to right is there any way to solve this issue
I use setConfiguration as.
options.setConfiguration(new IPdfWriterConfiguration() {
@Override
public void configure(PdfWriter pdfWriter) {
pdfWriter.setRunDirection(PdfWriter.RUN_DIRECTION_RTL);
}
});
but it did't help!!
Err as stated in the readme, I'm not maintaining this library anymore. But I'll welcome pull requests.