//Create a new PDF document PdfDocument doc = new PdfDocument(); //Add a page to the document PdfPage page = doc.Pages.Add();
//Create PDF graphics for the page PdfGraphics graphics = page.Graphics; //Create a new PDF font instance PdfFont font = new PdfTrueTypeFont(new Font("Arial", 14), true); //Set the format for string PdfStringFormat format = new PdfStringFormat(); //Set right-to-left text direction for RTL text format.TextDirection = PdfTextDirection.RightToLeft; //Set the text alignment format.Alignment = PdfTextAlignment.Right; format.ParagraphIndent = 35f;
//Read the text from file StreamReader reader = new StreamReader("Arabic.txt", Encoding.Unicode); string text = reader.ReadToEnd(); reader.Close(); //Draw string with right-to-left format graphics.DrawString(text, font, PdfBrushes.Black, new RectangleF(0, 0, page.GetClientSize().Width, page.GetClientSize().Height), format); //Set left-to-right text direction for RTL text format.TextDirection = PdfTextDirection.LeftToRight; //Set the text alignment format.Alignment = PdfTextAlignment.Left; //Draw string with left-to-right format graphics.DrawString(text, font, PdfBrushes.Black, new RectangleF(0, 100, page.GetClientSize().Width, page.GetClientSize().Height), format);
//Save the document doc.Save("Output.pdf"); //Close the document doc.Close(true);
|