<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'HTML to PDF automatic conversion' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'HTML to PDF automatic conversion' posted on the 'Perl' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Wed, 19 Jun 2013 13:25:25 -0700</pubDate>
    <lastBuildDate>Wed, 19 Jun 2013 13:25:25 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/332828/html-to-pdf-automatic-conversion/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
Anybody knows a script or function to convert automatically online a html page to pdf?&lt;br /&gt;
&lt;br /&gt;
Should be like this: I have a online reservation system where clients receive at the end the reservation voucher in html style. I would like to have shown instead of the html page a pdf voucher document.&lt;br /&gt;
&lt;br /&gt;
How can I do this?&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/332828/html-to-pdf-automatic-conversion/</guid>
      <pubDate>Wed, 22 Mar 2006 19:28:45 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/333251/re-html-to-pdf-automatic-conversion/#333251</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
: Anybody knows a script or function to convert automatically online a &lt;br /&gt;
: html page to pdf?&lt;br /&gt;
: &lt;br /&gt;
If you're willing to cough up some cash then:-&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.suite101.com/article.cfm/perl/108695"&gt;http://www.suite101.com/article.cfm/perl/108695&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Also, search.cpan.org with search for HTML PDF gives some interesting results, such as&lt;br /&gt;
&lt;a href="http://search.cpan.org/~autrijus/PDF-FromHTML-0.12/lib/PDF/FromHTML.pm"&gt;http://search.cpan.org/~autrijus/PDF-FromHTML-0.12/lib/PDF/FromHTML.pm&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Rather than going from HTML, you might consider a PDF template that you just fill in; this module helps with that.&lt;br /&gt;
&lt;a href="http://search.cpan.org/~larslund/PDF-Reuse-0.33/Reuse.pm"&gt;http://search.cpan.org/~larslund/PDF-Reuse-0.33/Reuse.pm&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Jonathan&lt;br /&gt;
&lt;br /&gt;
###&lt;br /&gt;
for(74,117,115,116){$::a.=chr};(($_.='qwertyui')&amp;amp;&amp;amp;&lt;br /&gt;
(tr/yuiqwert/her anot/))for($::b);for($::c){$_.=$^X;&lt;br /&gt;
/(p.{2}l)/;$_=$1}$::b=~/(..)$/;print("$::a$::b $::c hack$1.");&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/333251/re-html-to-pdf-automatic-conversion/#333251</guid>
      <pubDate>Mon, 27 Mar 2006 08:35:31 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/384712/re-html-to-pdf-automatic-conversion/#384712</link>
      <description>Another solution:&lt;br /&gt;
&lt;br /&gt;
import officetools.OfficeFile;&lt;br /&gt;
...&lt;br /&gt;
FileInputStream fis = new FileInputStream(new File("test.html")); &lt;br /&gt;
FileOutputStream fos = new FileOutputStream(new File("test.pdf"));&lt;br /&gt;
OfficeFile f = new OfficeFile(fis,"localhost","8100", true);&lt;br /&gt;
f.convert(fos,"pdf");&lt;br /&gt;
&lt;br /&gt;
All possible convertions:&lt;br /&gt;
html --&amp;gt; pdf&lt;br /&gt;
doc --&amp;gt; pdf, html, txt, rtf&lt;br /&gt;
xls --&amp;gt; pdf, html, csv&lt;br /&gt;
ppt --&amp;gt; pdf, swf&lt;br /&gt;
from dancrintea.ro/html-to-pdf/</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/384712/re-html-to-pdf-automatic-conversion/#384712</guid>
      <pubDate>Thu, 22 Jan 2009 07:53:49 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/388503/re-html-to-pdf-automatic-conversion/#388503</link>
      <description>You can try the &lt;a href="http://www.winnovative-software.com"&gt;html to pdf&lt;/a&gt; converter from &lt;a href="http://www.winnovative-software.com."&gt;http://www.winnovative-software.com.&lt;/a&gt; You can build a simple web service with the development library and call that html to pdf web service from any application.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/388503/re-html-to-pdf-automatic-conversion/#388503</guid>
      <pubDate>Thu, 02 Apr 2009 21:52:51 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/394808/re-html-to-pdf-automatic-conversion/#394808</link>
      <description>You can try the &lt;a href="http://www.winnovative-software.com"&gt;HTML to PDF converter&lt;/a&gt; from &lt;a href="http://www.winnovative-software.com"&gt;http://www.winnovative-software.com&lt;/a&gt; . It's a .NET library but you can easily create a web service to call from your PHP application.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/394808/re-html-to-pdf-automatic-conversion/#394808</guid>
      <pubDate>Sat, 08 Aug 2009 23:39:44 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/415283/re-html-to-pdf-automatic-conversion/#415283</link>
      <description>&lt;span style="font-size: x-small;"&gt;You can also try WKHTMLTOPDF&lt;br /&gt;
&lt;a href="http://code.google.com/p/wkhtmltopdf/"&gt;http://code.google.com/p/wkhtmltopdf/&lt;/a&gt;&lt;br /&gt;
This is open source and also supports CSS. It can be easily called through Perl as a batch process and perl script can be run through cron.&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;span style="color: Green;"&gt;&lt;/span&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/415283/re-html-to-pdf-automatic-conversion/#415283</guid>
      <pubDate>Fri, 09 Apr 2010 03:11:33 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>This post has been deleted.</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/415285/this-post-has-been-deleted/#415285</link>
      <description>This post has been deleted.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/415285/this-post-has-been-deleted/#415285</guid>
      <pubDate>Fri, 09 Apr 2010 03:16:48 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/420253/re-html-to-pdf-automatic-conversion/#420253</link>
      <description>I recommend this converter to you. (&lt;a href="http://www.softwarebbs.com/wiki/4Videosoft_PDF_to_HTML_Converter"&gt;PDF to HTML Converter&lt;/a&gt;)&lt;br /&gt;
Convert your PDF files to HTML using the PDF to HTML converter and easily integrate resulting HTML files in your existing web site structure. &lt;br /&gt;
How interesting...&lt;br /&gt;
&lt;br /&gt;
Maybe I can actually do some of the crazy things I get handed!&lt;br /&gt;
&lt;br /&gt;
Suhweet.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/420253/re-html-to-pdf-automatic-conversion/#420253</guid>
      <pubDate>Tue, 14 Dec 2010 20:26:05 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/421003/re-html-to-pdf-automatic-conversion/#421003</link>
      <description>try this &lt;a href="http://www.evopdf.com"&gt;HTML to PDF&lt;/a&gt; converter.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/421003/re-html-to-pdf-automatic-conversion/#421003</guid>
      <pubDate>Mon, 17 Jan 2011 04:56:47 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/426404/re-html-to-pdf-automatic-conversion/#426404</link>
      <description>I've heard there are some PDF converter program that can convert any formats related to PDF, you may search the internet and get what you want. and if you have finished it, you can change your PDF files into a flash book with the Kvisoft flip book software for easier reading: &lt;a href="http://www.kvisoft.com/flipbook-maker/"&gt;http://www.kvisoft.com/flipbook-maker/&lt;/a&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/426404/re-html-to-pdf-automatic-conversion/#426404</guid>
      <pubDate>Thu, 15 Dec 2011 22:39:51 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/426405/re-html-to-pdf-automatic-conversion/#426405</link>
      <description>I've heard there are some PDF converter program that can convert any formats related to PDF, you may search the internet and get what you want. and if you have finished it, you can change your PDF files into a flash book with the Kvisoft flip book software for easier reading: &lt;a href="http://www.kvisoft.com/flipbook-maker/"&gt;http://www.kvisoft.com/flipbook-maker/&lt;/a&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/426405/re-html-to-pdf-automatic-conversion/#426405</guid>
      <pubDate>Thu, 15 Dec 2011 22:50:33 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/426733/re-html-to-pdf-automatic-conversion/#426733</link>
      <description>Yo recomiendo que la &lt;a href="http://www.hiqpdf.com"&gt;hiqpdf html to pdf&lt;/a&gt; software</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/426733/re-html-to-pdf-automatic-conversion/#426733</guid>
      <pubDate>Fri, 06 Jan 2012 03:16:20 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/427144/re-html-to-pdf-automatic-conversion/#427144</link>
      <description>i am also &lt;a href="http://callingbook.com/"&gt;interested&lt;/a&gt; to learn this please teach me.&lt;br /&gt;
&lt;br /&gt;
thanks&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/427144/re-html-to-pdf-automatic-conversion/#427144</guid>
      <pubDate>Wed, 01 Feb 2012 05:28:18 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/431726/re-html-to-pdf-automatic-conversion/#431726</link>
      <description>Yep, there are such html to &lt;a href="http://www.rasteredge.com/how-to/csharp-imaging/pdf-convert-html/"&gt;pdf conversion program&lt;/a&gt;, and i've been using such pdf converter for a long time, but im not understand the "automatic conversion".&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/431726/re-html-to-pdf-automatic-conversion/#431726</guid>
      <pubDate>Thu, 28 Mar 2013 00:08:09 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/431727/re-html-to-pdf-automatic-conversion/#431727</link>
      <description>Yep, there are such &lt;a href="http://www.rasteredge.com/how-to/csharp-imaging/pdf-convert-html/"&gt;html to pdf conversion application&lt;/a&gt;, and i've been using such pdf converter for a long time. but im not sure about"automatic conversion"?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/431727/re-html-to-pdf-automatic-conversion/#431727</guid>
      <pubDate>Thu, 28 Mar 2013 00:15:04 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>HTML to PDF conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/431728/html-to-pdf-conversion/#431728</link>
      <description>Yep, there are such &lt;a href="http://www.rasteredge.com/how-to/csharp-imaging/pdf-convert-html/"&gt;html to pdf conversion application&lt;/a&gt;, and i've been using such pdf converter for a long time. but im not sure about"automatic conversion"?&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/431728/html-to-pdf-conversion/#431728</guid>
      <pubDate>Thu, 28 Mar 2013 00:21:58 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>HTML to PDF conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/431729/html-to-pdf-conversion/#431729</link>
      <description>Yep, there are such &lt;a href="http://www.rasteredge.com/how-to/csharp-imaging/pdf-convert-html/"&gt;html to pdf conversion application&lt;/a&gt;, and i've been using such pdf converter for a long time. but im not sure about"automatic conversion"?&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/431729/html-to-pdf-conversion/#431729</guid>
      <pubDate>Thu, 28 Mar 2013 00:27:21 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>HTML to PDF  conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/431730/html-to-pdf--conversion/#431730</link>
      <description>Yep, there are such &lt;a href="http://www.rasteredge.com/how-to/csharp-imaging/pdf-convert-html/"&gt;html to pdf conversion application&lt;/a&gt;, and i've been using such pdf converter for a long time. but im not sure about"automatic conversion"?&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/431730/html-to-pdf--conversion/#431730</guid>
      <pubDate>Thu, 28 Mar 2013 00:32:40 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/431981/re-html-to-pdf-automatic-conversion/#431981</link>
      <description>my friend once mentioned this image converter, and i look it up in its site and found it can do &lt;a href="http://www.rasteredge.com/how-to/csharp-imaging/pdf-convert-html/"&gt;html to pdf conversion&lt;/a&gt;, if you haven't found a good way to do that, you can have a try. good luck.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/431981/re-html-to-pdf-automatic-conversion/#431981</guid>
      <pubDate>Tue, 07 May 2013 20:06:26 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/431982/re-html-to-pdf-automatic-conversion/#431982</link>
      <description>my friend once mentioned this image converter, and i look it up in its site and found it can do &lt;a href="http://www.rasteredge.com/how-to/csharp-imaging/pdf-convert-html/"&gt;html to pdf conversion&lt;/a&gt;, if you haven't found a good way to do that, you can have a try. good luck.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/431982/re-html-to-pdf-automatic-conversion/#431982</guid>
      <pubDate>Tue, 07 May 2013 20:09:26 -0700</pubDate>
      <category>Perl</category>
    </item>
    <item>
      <title>Re: HTML to PDF automatic conversion</title>
      <link>http://www.programmersheaven.com/mb/perl/332828/431983/re-html-to-pdf-automatic-conversion/#431983</link>
      <description>my friend once mentioned this image converter, and i look it up in its site and found it can do &lt;a href="http://www.rasteredge.com/how-to/csharp-imaging/pdf-convert-html/"&gt;html to pdf conversion&lt;/a&gt;, if you haven't found a good way to do that, you can have a try. good luck.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/perl/332828/431983/re-html-to-pdf-automatic-conversion/#431983</guid>
      <pubDate>Tue, 07 May 2013 20:14:34 -0700</pubDate>
      <category>Perl</category>
    </item>
  </channel>
</rss>