i want to insert text arabic in pdf using itext
ColumnText column = new ColumnText(canvas);
column.go();
column.setSimpleColumn(36, 36, 559, 806);
column.setRunDirection(PdfWriter.RUN_DIRECTION_RTL);
column.addElement(new Paragraph("الاسم العائلي : ", fontAR));
column.go();
Remove the first
column.go()
because it doesn't make sense:Rectangle
yet, so there will be an error because iText doesn't know where to render this nothing.