I'd like to accomplish the following:

Given the path name of an html file, and the desired pathname of a pdf file, convert the HTML file to PDF using ITextSharp. I've seen plenty of code samples which do close to this but not exactly what I need. I believe my solution will need to use the iTextSharp.text.html.simpleparser.HTMLWorker.ParseToList() function but I'm having trouble getting this to work with an actual HTML file and outputting an actual PDF file.

public void GeneratePDF(string htmlFileName, string outputPDFFileName)
{...}

is the function I'd really like to get working properly.

Thanks in advance

Edit: Here's an example I've of what I've tried:

iTextSharp.text.Document doc = new Document();
        PdfWriter.GetInstance(doc, new FileStream(Path.GetFullPath("fromHTML.pdf"), FileMode.Create));

        doc.Open();

        try
        {
            List<IElement> list = iTextSharp.text.html.simpleparser.HTMLWorker.ParseToList(new StringReader(File.ReadAllText(this.textBox1.Text)), null);
            foreach (IElement elm in list)
            {
                doc.Add(elm);
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }

        doc.Close();

Note that textBox1.Text contains the full path name of the html file I'm trying to convert to pdf and I want this to get output to "fromHTML.pdf"

Thanks!

link|improve this question

54% accept rate
can u post some code from your attempt? – Simon Dec 8 '10 at 22:00
3  
feedback

2 Answers

I had the same requirement and was diverted to this page by Google but could not find a concrete answer. But after some head hitting and trials, i have been able to successfully convert the HTML code to PDF using iTextSharp library 5.1.1. The code that i have shared here also takes care of the img tags in HTML with relative paths. iTextSharp library throws an error if your img tags do not have absolute src. You an find the code here: http://am22tech.com/s/22/Blogs/post/2011/09/28/HTML-To-PDF-using-iTextSharp.aspx

Let me know if you need more information. The code is in c#.

link|improve this answer
feedback

http://somewebguy.wordpress.com/2009/05/08/itextsharp-simplify-your-html-to-pdf-creation/ - This should help, if not try the one below

http://www.eggheadcafe.com/community/aspnet/2/10151279/convert-html-string-to-pdf-using-itextsharp.aspx - please refer this

link|improve this answer
1  
All three of the "top three" questions in [pdf] are about converting HTML to PDF. 3 of the top 5 questions in [itextsharp] are about converting HTML to PDF. I'm pleasantly surprised that only the second question in [itext] (out of the top inconvenient-to-count) is about HTML conversion. That doesn't say much for the quality of .net users in general. – Mark Storer Dec 29 '10 at 1:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.