This is a bit niche, hoping someone can help.
I'm using DOMPDF to convert HTML into PDF files - nice piece of kit using existing library infrastructure. However, when I specify the 'set_paper' method it goes completely mental, sucking CPU out of existence and crashing. Odd, to say the least. It works when you do not specify this.
Code:-
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->set_paper('a4', 'landscape');
$dompdf->render();
file_put_contents('data.pdf', $dompdf->output());
render(), not just because you have calledset_paper? This likely has to do with your HTML and were I to guess I'd say the problem is likely related to this bug. To make better sense of your problem it would help if you could post a sample HTML document that causes the problem. – BrianS Dec 4 '11 at 1:38