Problem with HTML_ToPDF class (PHP) - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T01:53:29Zhttp://stackoverflow.com/feeds/question/759634http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/759634/problem-with-htmltopdf-class-php0Problem with HTML_ToPDF class (PHP)jävi2009-04-17T08:57:27Z2009-04-17T12:04:51Z
<p>Hello!</p>
<p>In my project, I'm using <a href="http://rustyparts.com/pdf.php" rel="nofollow">HTML_ToPDF</a> PHP class, which uses <a href="http://user.it.uu.se/~jan/html2ps.html" rel="nofollow">html2ps</a> script to convert from HTML to PDF file.</p>
<p>Recently I upgrated my production server to Debian 5 (lenny) and, after that, HTML_ToPDF is no longer working:</p>
<p>convert() method from HTML_ToPDF class is returning this error:</p>
<pre><code>Error: there was a problem running the html2ps command. Error code returned: 127. setDebug() for more information.
</code></pre>
<p>And, the output from html2ps call is:</p>
<pre><code>/usr/bin/perl: symbol lookup error: /usr/lib/perl5/auto/Compress/Zlib/Zlib.so: undefined symbol: Perl_Tstack_sp_ptr
</code></pre>
<p>Any help would be appreciated, thanks!</p>
<p><strong>[Edited]</strong>
After some tests, I've found that the problem happens only with HTML containing images ( tags). When html2ps founds the first image it crashes. Converting HTML without images works fine. Any idea? Thanks!</p>
http://stackoverflow.com/questions/759634/problem-with-htmltopdf-class-php/759843#7598430Answer by Ólafur Waage for Problem with HTML_ToPDF class (PHP)Ólafur Waage2009-04-17T10:09:14Z2009-04-17T10:09:14Z<p>This is an issue with the initial conversion from HTML to PS. Usually due to poorly written HTML.</p>
<p>Can you show some examples of what you are trying to convert?</p>
http://stackoverflow.com/questions/759634/problem-with-htmltopdf-class-php/759937#7599370Answer by Ciaran McNulty for Problem with HTML_ToPDF class (PHP)Ciaran McNulty2009-04-17T10:39:46Z2009-04-17T10:39:46Z<p>To be honest I've found <a href="http://code.google.com/p/wkhtmltopdf/" rel="nofollow">wkhtmltopdf</a> to be far better than html2ps, even though it's at a fairly early stage of development.</p>
<p>I wrote <a href="http://ciaranmcnulty.com/blog/2009/04/converting-html-to-pdf-using-wkhtmltopdf" rel="nofollow">a blog about it</a>, but if you don't want to read that basically it uses KHTML/Webkit's rendering engine to render the page which is a bit more sensible than the usual approach of writing a complete HTML renderer.</p>
<p>The distributed binary worked just fine on my Debian server, and frankly the results are excellent.</p>
http://stackoverflow.com/questions/759634/problem-with-htmltopdf-class-php/760152#7601520Answer by Buda for Problem with HTML_ToPDF class (PHP)Buda2009-04-17T12:04:51Z2009-04-17T12:04:51Z<p>Try this</p>
<p>apt-get install perl=5.8.8-7etch6 perl-base=5.8.8-7etch6 perl-modules=5.8.8-7etch6 debconf-i18n=1.5.11etch2 liblocale-gettext-perl=1.05-1 libtext-iconv-perl=1.4-3 libtext-wrapi18n-perl=0.06-5 libtext-charwidth-perl=0.04-4 html2ps=1.0b5-2 libapache2-mod-perl2=2.0.2-2.4 libcompress-zlib-perl=1.42-2 libfuse-perl=0.07-2+b2 libhtml-parser-perl=3.55-1 libhtml-tree-perl=3.19.01-2 libio-zlib-perl=1.04-1 libwww-perl=5.805-1 perlmagick=7:6.2.4.5.dfsg1-0.14 snmpd=5.2.3-7etch4 xhtml2ps mysql-client=5.0.32-7etch8 mysql-client-5.0=5.0.32-7etch8 libdbd-mysql-perl=3.0008-1 libdbi-perl=1.53-1etch1</p>
<p><a href="http://www.deberias.com" rel="nofollow">http://www.deberias.com</a></p>