I don't know iText well enough yet to make recommendations, but there are lots of HTML to PDF converters out there - like PD4ML that will take HTML *and* CSS input to output a formatted PDF.
-Paul
porcupine <[EMAIL PROTECTED]> wrote:
in java, something like this:
FileReader fr = new FileReader("c:/HelloWorld.html");
ArrayList elementlist = HTMLWorker.parseToList(fr, null);
for (int i = 0; i < elementlist.size(); i++) {
Element element = (Element)elementlist.get(i);
document.add(element);
}
--
View this message in context: http://www.nabble.com/How-to-convert-HTML-into-PDF--tf2040067.html#a5619917
Sent from the iText - General forum at Nabble.com.
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions
Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail Beta.
------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions
