I posted a question here a few weeks ago asking about an alternative to creating .fdf files to fill in pdf documents and someone here pointed me to ITextSharp.

It's working like a champ so thanks for that.

I'd now like to know if ITextSharp has the capability of converting HTML to PDF. Everything I will convert will just be plain text but unfortunately there is very little to no documentation on ITextSharp so I can't determine if that will be a viable solution for me.

If it can't do it, can someone point me to some good, free .net libraries that can take a simple plain text HTML document and convert it to a pdf?

tia.

link|improve this question

feedback

4 Answers

I came across the same question a few weeks ago and this is the result from what I found. This method does a quick dump of HTML to a PDF. The document will most likely need some format tweaking.

    private MemoryStream createPDF(string html)
    {
        MemoryStream msOutput = new MemoryStream();
        TextReader reader = new StringReader(html);

        // step 1: creation of a document-object
        Document document = new Document(PageSize.A4, 30, 30, 30, 30);            

        // step 2:
        // we create a writer that listens to the document
        // and directs a XML-stream to a file
        PdfWriter writer = PdfWriter.GetInstance(document, msOutput);

        // step 3: we create a worker parse the document
        HTMLWorker worker = new HTMLWorker(document);

        // step 4: we open document and start the worker on the document
        document.Open();
        worker.StartDocument();

        // step 5: parse the html into the document
        worker.Parse(reader);

        // step 6: close the document and the worker
        worker.EndDocument();
        worker.Close();
        document.Close();

        return msOutput;
    }
link|improve this answer
3  
To save someone else from having to dig through documentation, note that as of 5.1.1, HTMLWorker can be found in iTextSharp.text.html.simpleparser. – James Skemp Dec 2 '11 at 11:59
1  
Why do people never use "using" statements in c# code examples? – cbp Feb 6 at 0:40
@cbp I typically call a method like this in a using statement declaration. ex. using(MemoryStream stream = createPDF(html)){} – Jonathan Feb 6 at 14:44
1  
To save even more people, HTMLWorker is now obsolete. Use XMLWorkerHelper.ParseXHtml(), but beware, it only works with XHTML. You have to download it separately as it is designed as an add-on. – Jake Mar 26 at 2:58
feedback
up vote 3 down vote accepted

after doing some digging I found a good way to accomplish what I need with ITextSharp.

Here is some sample code if it will help anyone else in the future:

protected void Page_Load(object sender, EventArgs e)
        {
            Document document = new Document();
            try
            {
                PdfWriter.GetInstance(document, new FileStream("c:\\my.pdf", FileMode.Create));
                document.Open();
                WebClient wc = new WebClient();
                string htmlText = wc.DownloadString("http://localhost:59500/my.html");
                Response.Write(htmlText);
                List<IElement> htmlarraylist = HTMLWorker.ParseToList(new StringReader(htmlText), null);
                for (int k = 0; k < htmlarraylist.Count; k++)
                {
                    document.Add((IElement)htmlarraylist[k]);
                }

                document.Close();

            }
            catch
            {
            }
        }
link|improve this answer
You probably don't want to write your output to a fixed path like you're doing with a web app. You'll get resource contention against that single file under load. Use a MemoryStream or a temp file yielded up by the OS (be sure to delete the temp file when you're done with it). How to create a temp file: msdn.microsoft.com/en-us/library/… – ntcolonel Feb 23 at 17:07
feedback

The above code will certainly help in converting HTML to PDF but will fail if the the HTML code has IMG tags with relative paths. iTextSharp library does not automatically convert relative paths to absolute ones. I tried the above code and added code to take care of IMG tags too. You can find the code here for your reference: http://am22tech.com/s/22/Blogs/post/2011/09/28/HTML-To-PDF-using-iTextSharp.aspx

link|improve this answer
feedback

You can use HTMLDOC -> http://www.htmldoc.org/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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