vote up 4 vote down star
1

We're developing software for both Linux and Windows that requires CVS files to be generated into PDF reports. I've written a program in C to turn the CVS files into HTML files (td, tr etc.) and am then converting the HTML into PS using html2ps and then ps2pdf under Linux.

However as mentioned above we're also developing for Windows and while I'm aware that html2ps and ps2pdf are available under Windows they have a few dependencies which are going to cause headaches for our clients (namely Perl and Ghostscript). Are there any native Windows console applications that will convert HTML into PDF that can be distributed as single executable files with no major dependencies?

flag
We used this on a recent project, it has some limitations, but you might want to check it out. html-to-pdf.net/Default.aspx?c=g1&gclid=CMGW1… – cmsjr Jan 10 '09 at 15:33
Thank you for the link. I probably should've mentioned that we have a limited budget and are quite heavily committed to open source products. – Thomas Jan 10 '09 at 15:36

7 Answers

vote up 2 vote down

I've used Prince XML with Java and it is extremely powerful and easy to use, but it's also commercial.

link|flag
vote up 1 vote down

I had lots of luck with HTMLDOC. It is open source and available on many platforms and has a commercial version if you want to pay for it.

link|flag
vote up 1 vote down

Check Pisa (or XHTML2PDF). Its completely written in python so should work on Windows and Unix. The license is GPL but commerical license is also available.

link|flag
vote up 0 vote down

I've used Aspose which has both .NET and Java libraries to use for PDF conversion. I think it's great to use, but there's definitely a cost involved.

Since you're looking for something open source, I might suggest iText. I hear it's good, but haven't used it myself.

link|flag
vote up 0 vote down

PDFLib could be bundled with a native application written by yourselves to create PDFs. It's a great library - used to be free but it looks you have to pay for it these days.

Another option, but it doesn't exactly fit your non-dependency requirement, is iTextSharp.

link|flag
vote up 0 vote down

I've used ExpertPDF's Html2Pdf converter component. Easy to make .NET app to convert.

link|flag
vote up 0 vote down

We've used Apache FOP in the past to convert XML docs to PDF. perhaps not quite what you are looking for but It might be an option?

link|flag

Your Answer

Get an OpenID
or

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