Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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());
share|improve this question
Presumably the problem happens when you call render(), not just because you have called set_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

1 Answer

up vote 0 down vote accepted

Considering it works when in portrait and not landscape, it probably has to do with a table being taller than one page. There is a bug that causes DOMPDF to crash if a table extends beyond one page. Either surround the content with another element like a div, or break the table apart into several tables.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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