Click here to Skip to main content
15,897,187 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
using (var pdfWriter = PdfWriter.GetInstance(document, outputStream))
               {


                   pdfWriter.CloseStream = false;
                   document.SetPageSize(iTextSharp.text.PageSize.A3);

                   document.Open();
                   document.Add(objparagraph);
                   var worker = XMLWorkerHelper.GetInstance();
                   worker.ParseXHtml(pdfWriter, document, reader);
                   document.Close();
                   pdfWriter.Close();
               }


What I have tried:

I am using itextsharp dll for convert html to PDF. some thailand words vowel not properly .please help me
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900