How to take part in discussions on other sites? (e.g. the LiveJournal)
HTML to PDF
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What can I do?
• What to Read?
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Ñîîáùåñòâà
• Talxy Chat
• Horoscope
• Online
 
Çàðåãèñòðèðóéñÿ!

QAIX > Java Programming > HTML to PDF 4 September 2008 19:12:24

  Recent blog posts: 
  They have birthday today: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Moderators:

HTML to PDF

Venkatasuresh Annapu 4 September 2008 19:12:24
 Hello ,

There is a requirement in my java application where I need to convert .html
to .PDF

Can any body give me a solution how can achieve this .

Thanks in Advance
Venkata Suresh


-------------------­--------------------­----------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.co­m/sf
Add comment
Gamin 22 October 2002 04:34:36 permanent link ]
 Hi,

I have pdflib installed with PHP 4.0.6 i want to embed an HTML document
into a PDF doc, any pointers on how this can be done ?

TIA

gamin.



--
PHP General Mailing List (http://www.php.net­/)
To unsubscribe, visit: http://www.php.net/­unsub.php


Add comment
Gamin 22 October 2002 04:42:00 permanent link ]
 additionally im running a RedHAt 7.2 server


"Gamin" <gamin@vsnl.net> wrote in message
news:20021022013548­.15625.qmail@pb1.pai­r.com...> Hi,>
I have pdflib installed with PHP 4.0.6 i want to embed an HTML document> into a PDF doc, any pointers on how this can be done ?>
gamin.>



--
PHP General Mailing List (http://www.php.net­/)
To unsubscribe, visit: http://www.php.net/­unsub.php


Add comment
Olinux 22 October 2002 06:53:16 permanent link ]
 check out www.phpclasses.org - there's at least one
class there that does this.

olinux


--- gamin <gamin@vsnl.net> wrote:> Hi,>
I have pdflib installed with PHP 4.0.6 i want to> embed an HTML document> into a PDF doc, any pointers on how this can be done> ?>
gamin.>
-- > PHP General Mailing List (http://www.php.net­/)> To unsubscribe, visit: http://www.php.net/­unsub.php>


___________________­____________________­___________
Do you Yahoo!?
Y! Web Hosting - Let the expert host your web site
http://webhosting.y­ahoo.com/

--
PHP General Mailing List (http://www.php.net­/)
To unsubscribe, visit: http://www.php.net/­unsub.php


Add comment
Maxim Maletsky 22 October 2002 16:11:43 permanent link ]
 
You may want to pass it via XML. You need to embed your HTML output to
be globally understood.

What i would do, I would create HTML and PDF pages from the same XML
output I make within PHP. You resolve how.

TIP: There are some tutorials online for doing this.


--
Maxim Maletsky
maxim@php.net

www.PHPBeginner.com­ // where PHP Begins



"gamin" <gamin@vsnl.net> wrote... :
Hi,>
I have pdflib installed with PHP 4.0.6 i want to embed an HTML document> into a PDF doc, any pointers on how this can be done ?>
gamin.>
-- > PHP General Mailing List (http://www.php.net­/)> To unsubscribe, visit: http://www.php.net/­unsub.php>


--
PHP General Mailing List (http://www.php.net­/)
To unsubscribe, visit: http://www.php.net/­unsub.php


Add comment
James Van Etten 19 February 2004 23:56:40 permanent link ]
 When I convert an HTML page with a table the first column takes up 50%
of the table and the other columns are spread out over the other 50%.
What am I missing? I have search this list as well as the web and have
found no answers.

Thanks
Jim

*******************­****************
This e-mail, including attachments, is intended for the exclusive use
of the addressee and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, any dissemination,
use, distribution or copying is strictly prohibited. If you have
received this e-mail in error, please notify me via return e-mail and
permanently delete the original and destroy all copies.


-------------------­--------------------­----------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com­/?ad_id=1356&alloc_i­d=3438&op=click
Add comment
Jim VanEtten 4 March 2004 22:13:36 permanent link ]
 I have an HTML table that I wish to convert to PDF. It has between 8 and
13 columns. When I convert using:

// step 2:
// we create a writer that listens to the document
// and directs a XML-stream to a file
PdfWriter.getInstan­ce(document, new FileOutputStream("c­:/test.pdf"));

// step 3: we create a parser and set the document handler
SAXParser parser = SAXParserFactory.ne­wInstance().newSAXPa­rser();

// step 4: we parse the document
parser.parse("c:/bo­p3.htm", new SAXmyHtmlHandler(do­cument));

as per the instructions the first column takes up half the table and the
other columns are split evenly across the second half of the table. No
matter what percentage I put in the <td> tag I get the same result. How
can I get the table to equally distribute accross the cells.

Thanks
Jim


-------------------­--------------------­----------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http­://ads.osdn.com/?ad_­id=1470&alloc_id=363­8&op=click
Add comment
Jim VanEtten 4 March 2004 23:40:54 permanent link ]
 I have recieved a solution to my question about cell widths and it works
great now. Is there a way to control the size of the font ??

Thanks
Jim

Jim VanEtten said:> I have an HTML table that I wish to convert to PDF. It has between 8 and> 13 columns. When I convert using:>
// step 2:> // we create a writer that listens to the document> // and directs a XML-stream to a file> PdfWriter.getInstan­ce(document, new FileOutputStream("c­:/test.pdf"));>
// step 3: we create a parser and set the document handler> SAXParser parser = SAXParserFactory.ne­wInstance().newSAXPa­rser();>
// step 4: we parse the document> parser.parse("c:/bo­p3.htm", new SAXmyHtmlHandler(do­cument));>
as per the instructions the first column takes up half the table and the> other columns are split evenly across the second half of the table. No> matter what percentage I put in the <td> tag I get the same result. How> can I get the table to equally distribute accross the cells.>
Thanks> Jim



-------------------­--------------------­----------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http­://ads.osdn.com/?ad_­id=1470&alloc_id=363­8&op=click
Add comment
Bruno 5 March 2004 10:54:53 permanent link ]
 Quoting Jim VanEtten <jvane@invitation.o­rg>:
I have recieved a solution to my question about cell widths and it works> great now. Is there a way to control the size of the font ??

Some tags have a "size" attribute.
Check the code and/or the tutorial for more info.
br,
Bruno


-------------------­--------------------­----------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http­://ads.osdn.com/?ad_­id=1470&alloc_id=363­8&op=click
Add comment
Deepak PM 17 March 2004 06:50:31 permanent link ]
 Hi,
I am trying to convert a HTML document to PDF Document, I am using
the following code...

public static void main( String[] args )
{
Document m_oDocument = new Document( );
PdfWriter m_oPdfWriter = null;
try
{
m_oPdfWriter =
PdfWriter.getInstan­ce( m_oDocument,
new FileOutputStream( "myPDF.pdf" ) );

m_oDocument.open( );

SAXParser m_oSAXParser =
SAXParserFactory.ne­wInstance( ).newSAXParser(
);
SAXmyHtmlHandler m_oSaxHTMLHndlr =
new SAXmyHtmlHandler( m_oDocument );

m_oSAXParser.parse(­ "myHTML.html", m_oSaxHTMLHndlr );
m_oDocument.close( );
}
catch ( FileNotFoundExcepti­on e )
{
e.printStackTrace( );
}
catch ( DocumentException e )
{
e.printStackTrace( );
}
catch ( ParserConfiguration­Exception e )
{
e.printStackTrace( );
}
catch ( SAXException e )
{
e.printStackTrace( );
}
catch ( FactoryConfiguratio­nError e )
{
e.printStackTrace( );
}
catch ( IOException e )
{
e.printStackTrace( );
}
}


The PDF is successfully created, but the elements are not aligned as in
the html document, kindly help me out to achieve the same, responses to
pmdeepak@cordys.com­ is highly appreciated.


<file:///C:\Documen­ts%20and%20Settings\­dmani\Application%20­Data\Microsof
t\Signatures\vglogo­_main.gif>
[A Vanenburg Group Company]
Vanenburg IT Park.
Madhapur, Hyderabad-500081
Ph: - 91 40 5556 1457 (Office)
91 0988529 1457 (Mobile)
91 40 2330 0721 (Res)

<outbind://27-00000­000A63B435F39EBD6119­B7600508B139CB20700B­7DE71A2878BD3
119B2F00508B139CB20­000047618570000B7DE7­1A2878BD3119B2F00508­B139CB2000006
3882D10000/pmdeepak­@cordys.com> pmdeepak@cordys.com­



*******************­********************­********************­***********
The information in this message is confidential and may be legally
privileged. It is intended solely for the addressee. Access to this message
by anyone else is unauthorized. If you are not the intended recipient, any
disclosure, copying, or distribution of the message, or any action or
omission taken by you in reliance on it, is prohibited and may be unlawful.
Please immediately contact the sender if you have received this message in
error.

*******************­********************­********************­***********

Add comment
Hua W.H. 31 March 2004 11:23:48 permanent link ]
 
Add comment
Max 31 March 2004 13:09:50 permanent link ]
 I have an HTML table that I wish to convert to PDF. It has between 8 and
13 columns. When I convert using:

// step 2:
// we create a writer that listens to the document
// and directs a XML-stream to a file
PdfWriter.getInstan­ce(document, new FileOutputStream("c­:/test.pdf"));

// step 3: we create a parser and set the document handler
SAXParser parser = SAXParserFactory.ne­wInstance().newSAXPa­rser();

// step 4: we parse the document
parser.parse("c:/bo­p3.htm", new SAXmyHtmlHandler(do­cument));

as per the instructions the first column takes up half the table and the
other columns are split evenly across the second half of the table. No
matter what percentage I put in the <td> tag I get the same result. How
can I get the table to equally distribute accross the cells?




-------------------­--------------------­----------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http­://ads.osdn.com/?ad_­id=1470&alloc_id=363­8&op=click
Add comment
Luiz Fernando Rodrigues 18 June 2004 23:30:43 permanent link ]
 Hi,

Does anyone know a way to transform html docs into pdf? In
the FAQ section of iText they recommended a tool named HtmlDoc but it
doesn’t work very well.

Thanks,
Luiz


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft­.com).
Version: 6.0.707 / Virus Database: 463 - Release Date: 15/6/2004

Add comment
Taa Boo 23 June 2004 10:39:56 permanent link ]
 Hi,

we already solved this problem in Html2Pdf module at
http://www.pdfone.n­et ==> go there and download
NesOneSAXiTextHandl­er

cheers

http://www.pdfone.n­et
http://www.vietclev­er.com
http://www.sinhcafe­.net

--- Luiz Fernando Rodrigues
<lfrodrigues@teccom­m.les.inf.puc-rio.br­> wrote:> Hi,>
Does anyone know a way to transform html> docs into pdf? In> the FAQ section of iText they recommended a tool> named HtmlDoc but it> doesnt work very well.>
Thanks,> Luiz>
---> Outgoing mail is certified Virus Free.> Checked by AVG anti-virus system> (http://www.grisoft­.com).> Version: 6.0.707 / Virus Database: 463 - Release> Date: 15/6/2004>




___________________­_______________
Do you Yahoo!?
Yahoo! Mail is new and improved - Check it out!
http://promotions.y­ahoo.com/new_mail


-------------------­--------------------­----------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
digital self defense, top technical experts, no vendor pitches,
unmatched networking opportunities. Visit www.blackhat.com
Add comment
Caballero Caballero 23 June 2004 12:30:04 permanent link ]
 I have tried to use NesoneHtmlParser instead of HtmlParser but I have the
same problem with width columns.
I have downloaded the cnmkorea-iText.jar,­ cnmkorea-iTextXML.j­ar,
cnmkorea-html2pdf.j­ar from FCKitext.war from pdfone.net. It is correct? It
doesn´t work?

thankss

Pepe Caballero
Ingeniero Informatica
-----Mensaje original-----
De: taa boo [mailto:dangtronghop@yahoo.com]
Enviado el: miércoles, 23 de junio de 2004 9:40
Para: Luiz Fernando Rodrigues; itext-questions@lis­ts.sourceforge.net
Asunto: Re: [iText-questions] HTML to PDF

Hi,

we already solved this problem in Html2Pdf module at
http://www.pdfone.n­et ==> go there and download
NesOneSAXiTextHandl­er

cheers

http://www.pdfone.n­et
http://www.vietclev­er.com
http://www.sinhcafe­.net

--- Luiz Fernando Rodrigues
<lfrodrigues@teccom­m.les.inf.puc-rio.br­> wrote:> Hi,>
Does anyone know a way to transform html> docs into pdf? In> the FAQ section of iText they recommended a tool> named HtmlDoc but it> doesnt work very well.>
Thanks,> Luiz>
---> Outgoing mail is certified Virus Free.> Checked by AVG anti-virus system> (http://www.grisoft­.com).> Version: 6.0.707 / Virus Database: 463 - Release> Date: 15/6/2004>




___________________­_______________
Do you Yahoo!?
Yahoo! Mail is new and improved - Check it out!
http://promotions.y­ahoo.com/new_mail


-------------------­--------------------­----------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
digital self defense, top technical experts, no vendor pitches,
unmatched networking opportunities. Visit www.blackhat.com
___________________­____________________­________
iText-questions mailing list
iText-questions@lis­ts.sourceforge.net
https://lists.sourc­eforge.net/lists/lis­tinfo/itext-question­s




-------------------­--------------------­----------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
digital self defense, top technical experts, no vendor pitches,
unmatched networking opportunities. Visit www.blackhat.com
Add comment
Taa Boo 24 June 2004 05:40:47 permanent link ]
 Hi,

You already download the right things

I did not getting your questions, may be

but it seems we solved the problem in the absolute
positioning case

Please try FCKitext with absolute positioning for
table and images as instruction below!!!

http://www.pdfone.n­et/opensource/nesone­wysiwyg_html2pdf/htm­l2pdf_app1.jpg

After u resize the table and images..some width/height
information is genereate
style="ZINDEX:123;L­EFT=123;TOP:123;WIDT­H:231;HEIGHT:34"

This is the input for better width and height at PDF
output (look almost the same)

dun'know it can answer your questions or not!!!

I did not apply this feature for relative positioning

cheers

vu ngoc tan

http://www.pdfone.n­et
http://www.vietclev­er.com
http://www.sinhcafe­.net
--- "Caballero Caballero, Jose"
<jose.caballero.ext­s@juntadeandalucia.e­s> wrote:> I have tried to use NesoneHtmlParser instead of> HtmlParser but I have the> same problem with width columns. > I have downloaded the cnmkorea-iText.jar,­> cnmkorea-iTextXML.j­ar,> cnmkorea-html2pdf.j­ar from FCKitext.war from> pdfone.net. It is correct? It> doesnt work?>
thankss>
Pepe Caballero> Ingeniero Informatica > -----Mensaje original-----> De: taa boo [mailto:dangtronghop@yahoo.com] > Enviado el: mi?coles, 23 de junio de 2004 9:40> Para: Luiz Fernando Rodrigues;> itext-questions@lis­ts.sourceforge.net> Asunto: Re: [iText-questions] HTML to PDF>
Hi,>
we already solved this problem in Html2Pdf module at> http://www.pdfone.n­et ==> go there and download> NesOneSAXiTextHandl­er >
cheers>
--- Luiz Fernando Rodrigues> <lfrodrigues@teccom­m.les.inf.puc-rio.br­> wrote:> > Hi,> >
Does anyone know a way to transform> html> > docs into pdf? In> > the FAQ section of iText they recommended a tool> > named HtmlDoc but it> > doesnt work very well.> >
Thanks,> > Luiz> >
---> > Outgoing mail is certified Virus Free.> > Checked by AVG anti-virus system> > (http://www.grisoft­.com).> > Version: 6.0.707 / Virus Database: 463 - Release> > Date: 15/6/2004> >
___________________­_______________> Do you Yahoo!?> Yahoo! Mail is new and improved - Check it out!> http://promotions.y­ahoo.com/new_mail>
-------------------­--------------------­----------------> This SF.Net email sponsored by Black Hat Briefings &> Training.> Attend Black Hat Briefings & Training, Las Vegas> July 24-29 - > digital self defense, top technical experts, no> vendor pitches, > unmatched networking opportunities. Visit> www.blackhat.com> ___________________­____________________­________> iText-questions mailing list> iText-questions@lis­ts.sourceforge.net>
https://lists.sourc­eforge.net/lists/lis­tinfo/itext-question­s>
-------------------­--------------------­----------------> This SF.Net email sponsored by Black Hat Briefings &> Training.> Attend Black Hat Briefings & Training, Las Vegas> July 24-29 -> digital self defense, top technical experts, no> vendor pitches,> unmatched networking opportunities. Visit> www.blackhat.com> ___________________­____________________­________> iText-questions mailing list> iText-questions@lis­ts.sourceforge.net>
https://lists.sourc­eforge.net/lists/lis­tinfo/itext-question­s>




___________________­_______________
Do you Yahoo!?
Yahoo! Mail - Helps protect you from nasty viruses.
http://promotions.y­ahoo.com/new_mail


-------------------­--------------------­----------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
digital self defense, top technical experts, no vendor pitches,
unmatched networking opportunities. Visit www.blackhat.com
Add comment
Luiz Fernando Rodrigues 24 June 2004 20:59:18 permanent link ]
 Hi,

I tried your handler but I can't make it works. Actually nor yours nor
the itext handler (SAXmyHtmlHandler).­ I'm trying to use the same code of
example 6 in the chapter 7 of the tutorial. All I got was an empty pdf
file. Do you know why?

I'll copy the code fragment:

PdfWriter.getInstan­ce(document, new FileOutputStream("C­hap0706.pdf"));
SAXParser parser = SAXParserFactory.ne­wInstance().newSAXPa­rser();
parser.parse("Chap0­702.html", new SAXmyHtmlHandler(do­cument));

thanks,
Luiz

-----Original Message-----
From: itext-questions-adm­in@lists.sourceforge­.net
[mailto:itext-questions-admin@lists.sourceforge.net] On Behalf Of taa
boo
Sent: quarta-feira, 23 de junho de 2004 04:40
To: Luiz Fernando Rodrigues; itext-questions@lis­ts.sourceforge.net
Subject: Re: [iText-questions] HTML to PDF

Hi,

we already solved this problem in Html2Pdf module at
http://www.pdfone.n­et ==> go there and download
NesOneSAXiTextHandl­er

cheers

http://www.pdfone.n­et
http://www.vietclev­er.com
http://www.sinhcafe­.net

--- Luiz Fernando Rodrigues
<lfrodrigues@teccom­m.les.inf.puc-rio.br­> wrote:> Hi,>
Does anyone know a way to transform html> docs into pdf? In> the FAQ section of iText they recommended a tool> named HtmlDoc but it> doesn’t work very well.>
Thanks,> Luiz>
---> Outgoing mail is certified Virus Free.> Checked by AVG anti-virus system> (http://www.grisoft­.com).> Version: 6.0.707 / Virus Database: 463 - Release> Date: 15/6/2004>




___________________­_______________
Do you Yahoo!?
Yahoo! Mail is new and improved - Check it out!
http://promotions.y­ahoo.com/new_mail


-------------------­--------------------­----------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
digital self defense, top technical experts, no vendor pitches,
unmatched networking opportunities. Visit www.blackhat.com
___________________­____________________­________
iText-questions mailing list
iText-questions@lis­ts.sourceforge.net
https://lists.sourc­eforge.net/lists/lis­tinfo/itext-question­s

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft­.com).
Version: 6.0.708 / Virus Database: 464 - Release Date: 18/6/2004


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft­.com).
Version: 6.0.709 / Virus Database: 465 - Release Date: 22/6/2004




-------------------­--------------------­----------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
digital self defense, top technical experts, no vendor pitches,
unmatched networking opportunities. Visit www.blackhat.com
Add comment
Taa Boo 25 June 2004 08:54:24 permanent link ]
 Hi,

Did you try Fckitext version 1.1 on tomcat

if it works, then you will see the sample how to use
html2pdf java class and how HTML sample code should be

0therwise,
you can download html2pdf.exe only with its Sample
Package/// English version available at pdfone.net
only

Korea version at sourceforge.net always comes out
blank view of PDF with non-korea font acrobat reader/.

hope can help,

anyway..please subscribe to our support list to
discuss about those stuffs at Pdfone.. I am reading
mess in itext group not frequently

https://lists.sourc­eforge.net/lists/lis­tinfo/fckitext-suppo­rt

All together, we can make better contributions

regards.

taboo

www.vietclever.com
www.pdfone.net
www.sinhcafe.net
--- Luiz Fernando Rodrigues
<lfrodrigues@teccom­m.les.inf.puc-rio.br­> wrote:> Hi,>
I tried your handler but I can't make it works.> Actually nor yours nor> the itext handler (SAXmyHtmlHandler).­ I'm trying to> use the same code of> example 6 in the chapter 7 of the tutorial. All I> got was an empty pdf> file. Do you know why?>
I'll copy the code fragment:>
PdfWriter.getInstan­ce(document, new> FileOutputStream("C­hap0706.pdf"));> SAXParser parser => SAXParserFactory.ne­wInstance().newSAXPa­rser();> parser.parse("Chap0­702.html", new> SAXmyHtmlHandler(do­cument));>
thanks,> Luiz>
-----Original Message-----> From: itext-questions-adm­in@lists.sourceforge­.net> [mailto:itext-questions-admin@lists.sourceforge.net]> On Behalf Of taa> boo> Sent: quarta-feira, 23 de junho de 2004 04:40> To: Luiz Fernando Rodrigues;> itext-questions@lis­ts.sourceforge.net> Subject: Re: [iText-questions] HTML to PDF>
Hi,>
we already solved this problem in Html2Pdf module at> http://www.pdfone.n­et ==> go there and download> NesOneSAXiTextHandl­er >
cheers>
--- Luiz Fernando Rodrigues> <lfrodrigues@teccom­m.les.inf.puc-rio.br­> wrote:> > Hi,> >
Does anyone know a way to transform> html> > docs into pdf? In> > the FAQ section of iText they recommended a tool> > named HtmlDoc but it> > doesnt work very well.> >
Thanks,> > Luiz> >
---> > Outgoing mail is certified Virus Free.> > Checked by AVG anti-virus system> > (http://www.grisoft­.com).> > Version: 6.0.707 / Virus Database: 463 - Release> > Date: 15/6/2004> >
___________________­_______________> Do you Yahoo!?> Yahoo! Mail is new and improved - Check it out!> http://promotions.y­ahoo.com/new_mail>
-------------------­--------------------­----------------> This SF.Net email sponsored by Black Hat Briefings &> Training.> Attend Black Hat Briefings & Training, Las Vegas> July 24-29 - > digital self defense, top technical experts, no> vendor pitches, > unmatched networking opportunities. Visit> www.blackhat.com> ___________________­____________________­________> iText-questions mailing list> iText-questions@lis­ts.sourceforge.net>
https://lists.sourc­eforge.net/lists/lis­tinfo/itext-question­s>
---> Incoming mail is certified Virus Free.> Checked by AVG anti-virus system> (http://www.grisoft­.com).> Version: 6.0.708 / Virus Database: 464 - Release> Date: 18/6/2004>
---> Outgoing mail is certified Virus Free.> Checked by AVG anti-virus system> (http://www.grisoft­.com).> Version: 6.0.709 / Virus Database: 465 - Release> Date: 22/6/2004>




___________________­_______________
Do you Yahoo!?
Yahoo! Mail is new and improved - Check it out!
http://promotions.y­ahoo.com/new_mail


-------------------­--------------------­----------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
digital self defense, top technical experts, no vendor pitches,
unmatched networking opportunities. Visit www.blackhat.com
Add comment
Lutz Biederbeck 7 July 2004 09:42:07 permanent link ]
 As seen on many sites, I want to add a "pdf-version" - function to my
site. So the content has to convert from html to pdf on the fly. I tested
"HTML2DOC", but there is no support for CSS. Has anyone experiences with
this or knows other tools?

Thanks Lutz

---
You are currently subscribed to farcry-dev as: gcf-farcry-dev-Uylq­5CNFT+jYtjvyW6yDsg@p­ublic.gmane.org
To unsubscribe send a blank email to leave-farcry-dev-51­05H-VCrIQ7D8lE6uI5gG­y/GxD7pzq4S04n8Q@pub­lic.gmane.org
Aussie Macromedia Developers: http://lists.daemon­.com.au/

Add comment
David Whiterod 7 July 2004 09:57:32 permanent link ]
 Hi Lutz,

Try http://www.activepd­f.com/products/serve­rproducts/WebGrabber­/index.cfm

... or wait for Blackstone's <CFDOCUMENT FORMAT="pdf|flashpa­per" ...>

http://www.macromed­ia.com/devnet/mx/col­dfusion/articles/bla­ckstone.html

cheers

David


-----Original Message-----
From: Lutz Biederbeck [mailto:Lutz.Biederbeck-tz0N0cR1dMU@public.gmane.org]
Sent: Wednesday, July 07, 2004 4:12 PM
To: FarCry Developers
Subject: [farcry-dev] HTML to PDF


As seen on many sites, I want to add a "pdf-version" - function to my
site. So the content has to convert from html to pdf on the fly. I tested
"HTML2DOC", but there is no support for CSS. Has anyone experiences with
this or knows other tools?

Thanks Lutz

---
You are currently subscribed to farcry-dev as:
whiterod.david-thPe­e4JWKF1t6WZnHsqEgQ@p­ublic.gmane.org
To unsubscribe send a blank email to
leave-farcry-dev-51­05H-VCrIQ7D8lE6uI5gG­y/GxD7pzq4S04n8Q@pub­lic.gmane.org
Aussie Macromedia Developers: http://lists.daemon­.com.au/

---
You are currently subscribed to farcry-dev as: gcf-farcry-dev-Uylq­5CNFT+jYtjvyW6yDsg@p­ublic.gmane.org
To unsubscribe send a blank email to leave-farcry-dev-51­05H-VCrIQ7D8lE6uI5gG­y/GxD7pzq4S04n8Q@pub­lic.gmane.org
Aussie Macromedia Developers: http://lists.daemon­.com.au/

Add comment
Sean Edwards 7 July 2004 22:22:46 permanent link ]
 Cold Fusion PDF Creation and Image Manipulation

http://www.easel2.c­om/

On Wed, 7 Jul 2004 16:27:32 +0930 , Whiterod, David (DTUP)
<whiterod.david-thP­ee4JWKF1t6WZnHsqEgQ@­public.gmane.org> wrote:> Hi Lutz,>
... or wait for Blackstone's <CFDOCUMENT FORMAT="pdf|flashpa­per" ...>>
cheers>
David>
-----Original Message-----> From: Lutz Biederbeck [mailto:Lutz.Biederbeck-tz0N0cR1dMU@public.gmane.org]> Sent: Wednesday, July 07, 2004 4:12 PM> To: FarCry Developers> Subject: [farcry-dev] HTML to PDF>
As seen on many sites, I want to add a "pdf-version" - function to my> site. So the content has to convert from html to pdf on the fly. I tested> "HTML2DOC", but there is no support for CSS. Has anyone experiences with> this or knows other tools?>
Thanks Lutz>
---> You are currently subscribed to farcry-dev as:> whiterod.david-thPe­e4JWKF1t6WZnHsqEgQ@p­ublic.gmane.org>
To unsubscribe send a blank email to> leave-farcry-dev-51­05H-VCrIQ7D8lE6uI5gG­y/GxD7pzq4S04n8Q@pub­lic.gmane.org> Aussie Macromedia Developers: http://lists.daemon­.com.au/>
---> You are currently subscribed to farcry-dev as: sean.edwards-Re5JQE­eQqe8AvxtiuMwx3w@pub­lic.gmane.org> To unsubscribe send a blank email to leave-farcry-dev-51­05H-VCrIQ7D8lE6uI5gG­y/GxD7pzq4S04n8Q@pub­lic.gmane.org> Aussie Macromedia Developers: http://lists.daemon­.com.au/>

---
You are currently subscribed to farcry-dev as: gcf-farcry-dev-Uylq­5CNFT+jYtjvyW6yDsg@p­ublic.gmane.org
To unsubscribe send a blank email to leave-farcry-dev-51­05H-VCrIQ7D8lE6uI5gG­y/GxD7pzq4S04n8Q@pub­lic.gmane.org
Aussie Macromedia Developers: http://lists.daemon­.com.au/

Add comment


Sumedh 3 December 2004 15:02:17 permanent link ]
 Hi,

Is there a way by which I can convert given HTML to PDF using iText? Basically, I want to add an export button to my JSP's, that'll export the content area as a pdf.

Thanks.
Add comment
Dirk Wellmann 3 December 2004 16:19:49 permanent link ]
 Hi, Sumedh,

I just tried it with iText some days ago, but the implementation is at the beginning and is only for very simple html
files. My suggestion would be to use Jasper for that.

Hi,>
Is there a way by which I can convert given HTML to PDF using iText? Basically, I want to add an export button to my> JSP's, that'll export the content area as a pdf.>
Thanks.

Best Regards

Dirk Wellmann
--
Donald E. Knuth: There are better ways to earn a living than to prevent other people from making use of one's
contributions to computer science.


-------------------­--------------------­----------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide­.itmanagersjournal.c­om/
Add comment


Matt Babineau 23 March 2005 00:52:41 permanent link ]
 Hi All, I have some reports I need converted from HTML to PDF, I'm on a LAMP
box, so does anyone have any free suggestions?

Thanks,

Matt Babineau
Criticalcode
w: http://www.critical­code.com
p: 858.733.0160
e: matt@criticalcode.c­om

Add comment
Chris Boget 23 March 2005 00:54:58 permanent link ]
 
Hi All, I have some reports I need converted from HTML to PDF, I'm on a> LAMP box, so does anyone have any free suggestions?

Google htmldoc

thnx,
Chris

--
PHP General Mailing List (http://www.php.net­/)
To unsubscribe, visit: http://www.php.net/­unsub.php


Add comment


Jason Barnett 23 March 2005 18:17:16 permanent link ]
 Matt Babineau wrote:> Hi All, I have some reports I need converted from HTML to PDF, I'm on a LAMP> box, so does anyone have any free suggestions?>

google fpdf

--
Teach a man to fish...

NEW? | http://www.catb.org­/~esr/faqs/smart-que­stions.html
STFA | http://marc.theaims­group.com/?l=php-gen­eral&w=2
STFM | http://php.net/manu­al/en/index.php
STFW | http://www.google.c­om/search?q=php
LAZY |
http://mycroft.mozd­ev.org/download.html­?name=PHP&submitform­=Find+search+plugins­
Add comment
John Tobias 7 May 2005 01:44:22 permanent link ]
 Hello All,

I would like to know if the IText API support the HTML to PDF conversion?
For, example I have
index.html then when I call IText API, it will convert html into a PDF file.

Thanks,

John




-------------------­--------------------­----------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy­.com/?r=20
Add comment
Neil Robertson-Ravo 13 June 2005 19:02:22 permanent link ]
 It is also not very good at complex HTML.

Probably loads out there.....have a look for iText or some other Java based
tool.



-----Original Message-----
From: Rey Bango [mailto:rey-i/B4upybFHxWk0Htik3J/w@public.gmane.org]
Sent: 13 June 2005 16:04
To: CF-Talk
Subject: HTML to PDF

Hi guys. I need a solution that will let me build a dynamic HTML page
and output it to PDF. I know of ActivPDF but it's currently priced at
$1,500 for their webgrabber product.

We're currently on CFMX 6.1.

Any alternatives?

Rey...

--




~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoff­usion.com/banners/vi­ew.cfm?bannerid=67

Message: http://www.houseoff­usion.com/lists.cfm/­link=i:4:209282
Archives: http://www.houseoff­usion.com/cf_lists/t­hreads.cfm/4
Subscription: http://www.houseoff­usion.com/lists.cfm/­link=s:4
Unsubscribe: http://www.houseoff­usion.com/cf_lists/u­nsubscribe.cfm?user=­13123.11886.4
Donations & Support: http://www.houseoff­usion.com/tiny.cfm/5­4

Add comment
Rey Bango 13 June 2005 19:03:38 permanent link ]
 Hi guys. I need a solution that will let me build a dynamic HTML page
and output it to PDF. I know of ActivPDF but it's currently priced at
$1,500 for their webgrabber product.

We're currently on CFMX 6.1.

Any alternatives?

Rey...

--
http://www.ReyBango­.com


~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoff­usion.com/banners/vi­ew.cfm?bannerid=67

Message: http://www.houseoff­usion.com/lists.cfm/­link=i:4:209281
Archives: http://www.houseoff­usion.com/cf_lists/t­hreads.cfm/4
Subscription: http://www.houseoff­usion.com/lists.cfm/­link=s:4
Unsubscribe: http://www.houseoff­usion.com/cf_lists/u­nsubscribe.cfm?user=­13123.11886.4
Donations & Support: http://www.houseoff­usion.com/tiny.cfm/5­4

Add comment
Calvin Ward 13 June 2005 19:09:48 permanent link ]
 Upgrade to 7.0 and you'll pay less and get a whole bunch more functionality!
:)­

-----Original Message-----
From: Rey Bango [mailto:rey-i/B4upybFHxWk0Htik3J/w@public.gmane.org]
Sent: Monday, June 13, 2005 11:04 AM
To: CF-Talk
Subject: HTML to PDF

Hi guys. I need a solution that will let me build a dynamic HTML page and
output it to PDF. I know of ActivPDF but it's currently priced at $1,500 for
their webgrabber product.

We're currently on CFMX 6.1.

Any alternatives?

Rey...

--
http://www.ReyBango­.com




~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoff­usion.com/banners/vi­ew.cfm?bannerid=67

Message: http://www.houseoff­usion.com/lists.cfm/­link=i:4:209283
Archives: http://www.houseoff­usion.com/cf_lists/t­hreads.cfm/4
Subscription: http://www.houseoff­usion.com/lists.cfm/­link=s:4
Unsubscribe: http://www.houseoff­usion.com/cf_lists/u­nsubscribe.cfm?user=­13123.11886.4
Donations & Support: http://www.houseoff­usion.com/tiny.cfm/5­4

Add comment
James Holmes 13 June 2005 19:11:31 permanent link ]
 Apache FOP (http://xml.apache.­org/fop/) works well. There's a good
stylesheet for XHTML-> FO at
http://www-106.ibm.­com/developerworks/l­ibrary/x-xslfo2app/ and the whole
lot is open source.

-----Original Message-----
From: Rey Bango [mailto:rey-i/B4upybFHxWk0Htik3J/w@public.gmane.org]
Sent: Monday, 13 June 2005 11:04
To: CF-Talk
Subject: HTML to PDF

Hi guys. I need a solution that will let me build a dynamic HTML page
and output it to PDF. I know of ActivPDF but it's currently priced at
$1,500 for their webgrabber product.

We're currently on CFMX 6.1.

~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoff­usion.com/banners/vi­ew.cfm?bannerid=67

Message: http://www.houseoff­usion.com/lists.cfm/­link=i:4:209284
Archives: http://www.houseoff­usion.com/cf_lists/t­hreads.cfm/4
Subscription: http://www.houseoff­usion.com/lists.cfm/­link=s:4
Unsubscribe: http://www.houseoff­usion.com/cf_lists/u­nsubscribe.cfm?user=­13123.11886.4
Donations & Support: http://www.houseoff­usion.com/tiny.cfm/5­4

Add comment
Rick Mason 13 June 2005 19:14:52 permanent link ]
 Rey,
You may want to check out one of our CFUG presentations on that very
subject:
www.coldfusion.org/­downloads/Merging_CF­_With_Adobe_pdf.ppt<­http://www.coldfusio­n.org/downloads/Merg­ing_CF_With_Adobe_pd­f.ppt>
If you have any questions the author, Randy Brown, has his email in the
presentation.
Rick Mason


On 6/13/05, Rey Bango <rey-i/B4upybFHxWk0­Htik3J/w@public.gman­e.org> wrote: >
Hi guys. I need a solution that will let me build a dynamic HTML page> and output it to PDF. I know of ActivPDF but it's currently priced at> $1,500 for their webgrabber product.>
We're currently on CFMX 6.1.>
Any alternatives?>
Rey...>

~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble
Ticket application

http://www.houseoff­usion.com/banners/vi­ew.cfm?bannerid=48

Message: http://www.houseoff­usion.com/lists.cfm/­link=i:4:209285
Archives: http://www.houseoff­usion.com/cf_lists/t­hreads.cfm/4
Subscription: http://www.houseoff­usion.com/lists.cfm/­link=s:4
Unsubscribe: http://www.houseoff­usion.com/cf_lists/u­nsubscribe.cfm?user=­13123.11886.4
Donations & Support: http://www.houseoff­usion.com/tiny.cfm/5­4

Add comment
Mark Madras 13 June 2005 19:15:24 permanent link ]
 Hello,

We use PDFLib (including PDI) which currently is running $900. It is
licensed on a per cpu basis with discounts for multi-cpu environments.

-Mark

On 6/13/05, Rey Bango <rey-i/B4upybFHxWk0­Htik3J/w@public.gman­e.org> wrote:> Hi guys. I need a solution that will let me build a dynamic HTML page> and output it to PDF. I know of ActivPDF but it's currently priced at> $1,500 for their webgrabber product.>
We're currently on CFMX 6.1.>
Any alternatives?>
Rey...>

~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~~~~~~~~~~~­~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support
efficiency by 100%
http://www.houseoff­usion.com/banners/vi­ew.cfm?bannerid=49

Message: http://www.houseoff­usion.com/lists.cfm/­link=i:4:209286
Archives: http://www.houseoff­usion.com/cf_lists/t­hreads.cfm/4
Subscription: