I know that there is a lot of posts about this problem.But can someone help me to setup this http://www.rustyparts.com/pdf.php script to work on my localhost.I just spent all week on this problem.I have download imagemagic,ghostscript,activeperl,...,everything,but still can't make simple example to work.

link|improve this question

74% accept rate
2  
That's sort of a no-longer maintained library.. its last release is from 2006! I would consider a newer -and active- one. – ncuesta Dec 27 '10 at 22:31
If you decide not to continue with the library you are currently using you can find a good list here: stackoverflow.com/q/3178448/264628. Looks like you're trying out wkhtmltopdf, but there are a number of pure PHP solutions out there as well. – BrianS Dec 28 '10 at 19:24
feedback

4 Answers

up vote 8 down vote accepted

Use wkhtmltopdf via a system call. See How to install wkhtmltopdf on a linux based web server for installation help.

wkhtmltopdf is a command line program which permits to create a pdf from an url, a local html file or stdin. It produces a pdf like rendred with the WebKit engine.

See the sample from this page here.

php code tested on Ubuntu (you'll need to change the /tmp/ to a temporary directory on Windows):

$url = 'http://www.google.com';
$pdffile = tempnam('/tmp/', 'wkhtmltopdf_');
$handle = popen("wkhtmltopdf $url $pdffile 2>&1", "r");
while (!feof($handle)) 
  fread($handle, 4096);
pclose($handle);
header('Content-type: application/pdf');
$file = fopen($pdffile, "r");
while(!feof($file))
  print fread($file, 4096);
unlink($pdffile);

There are also php bindings which removes the need to use a system call yourself, which is a simpler (and safer!) option.

try {
    $wkhtmltopdf = new Core_Wkhtmltopdf(array('path' => APPLICATION_PATH . '/../public/uploads/'));
    $wkhtmltopdf->setTitle("Title");
    $wkhtmltopdf->setHtml("Content");
    $wkhtmltopdf->output(Wkhtmltopdf::MODE_DOWNLOAD, "file.pdf");
} catch (Exception $e) {
    echo $e->getMessage();
}
link|improve this answer
Ohhh,another php pdf library :((( but I need to create system for exporting html pages to pdf,user to click on link on website,and than pdf file is generated ? – user303832 Dec 27 '10 at 22:28
Be careful with the single quotes there. If you want variables substitution, those will have to be double quotes. – ncuesta Dec 27 '10 at 22:29
ok,cool,it looks great,can I use this library on my website,I'm not php guru,I'm just learning some stuff – user303832 Dec 27 '10 at 22:29
@ncuesta Fixed. @user This isn't a library at all, it's a standalone binary you can call from within PHP via a system call as I've shown. Many html2pdf's out there use there own rendering engine, this one uses the excellent WebKit engine used in Chrome, Safari and other major browsers. – marcog Dec 27 '10 at 22:32
1  
@user Good luck! :) – marcog Dec 28 '10 at 10:29
show 30 more comments
feedback

Simple but powerful: http://html2pdf.fr/en/default

$html = file_get_contents("valid.html");
require_once("html2pdf.class.php");
$html2pdf = new HTML2PDF("P", "A4", "en", array(10, 10, 10, 10));
$html2pdf->setEncoding("ISO-8859-1");
$html2pdf->WriteHTML($html);
$html2pdf->Output("pdf/PDF.pdf", "F"); //output to file
$html2pdf->Output(); //output to browser
link|improve this answer
this looks great,is it simple to install on localhost ? then later on server ? – user303832 Dec 27 '10 at 22:31
Yes just extract it in root folder and you are all set. – webarto Dec 27 '10 at 22:36
Cool,I will take a look,at this,tnx mate :) – user303832 Dec 27 '10 at 22:39
I get this : preg_match() expects parameter 2 to be string, array given in C:\xampp\htdocs\cpt\html2pdf\html2pdf.class.php on line 970 – user303832 Dec 27 '10 at 23:01
Probably your HTML is not valid, you must keep it valid in order to successfully convert it, check on this site: validator.w3.org – webarto Dec 27 '10 at 23:06
show 2 more comments
feedback

DocRaptor.com is a good option - it uses Prince XML, so the quality is better than other tools, and it's a web app, so nothing to download. It also works in any language.

link|improve this answer
feedback

Also, there is another library that generates PDF files: TCPDF. Nice and quite simple. You can find many examples around.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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