Question

I'm using the mPDF library to generate PDF docs directly from HTML output. The problem is that this mPDF library is written as it is and it is generating dozens of notices (undefined index, undefined offset, etc). I tried anything to stop outputting them but nothing yet helped.

I tried to put error_reporting(E_ALL ^ E_NOTICE); as well as error_reporting(E_ALL & ~E_NOTICE); which i inserted into my index.php, into the class and method that is directly including mpdf.php and also at the start of mpdf.php. I also tried combinations with ini_set('display_errors', 0); - all these directives are working for whole the web application but for mpdf. Therefore even when PDF could be well formed and valid I cannot output it (let the user download it).

Also the problem occurs with my HTML (simple table, really nothing special) while the examples are working fine and with no notices.

So the help I would need: either get rid of notices or better help me find out why the mPDF is not working for me.

If I use this code:

include_once(DIR_MPDF.'mpdf.php');
$mpdf = new mPDF();
$mpdf->useOnlyCoreFonts = true;
$mpdf->SetDisplayMode('fullpage');
$mpdf->SetAutoFont(0);
$mpdf->WriteHTML('<table><tr><td>HELLO WORLD</td></tr></table>');
$mpdf->Output();
exit;

everything is working good, but if I try to output this HTML:

$mpdf->WriteHTML('<table><tr><td>HELLO WORLD</td><td>HELLO WORLD</td></tr></table>');

I get notices and therefore PDF cannot be outputted.

If I save the output from mPDF into a file (using e.g. file_put_contents()), the PDF is valid and therefore readable even if I use complex HTML - but still the Notices are printed into the browser. Anyway, I need the PDF to be offered for download, not to be saved into filesystem.

OK, I found one solution though it is not the best practice (but it works): I enclose the code with ob_start(); and ob_end_clean(); while catching out the $pdf string that I output instead of mPDF.

Final code:

ob_start();
include(DIR_MPDF.'mpdf.php');
$html = $this->render(TRUE);

$mpdf = new mPDF('utf-8','A4');

$mpdf->useOnlyCoreFonts = true;
$mpdf->SetDisplayMode('fullpage');
$mpdf->SetAutoFont(0);

$stylesheet = file_get_contents(DIR_APPLICATION.'view/stylesheet/declaration.css');
$mpdf->WriteHTML($stylesheet,1);

$mpdf->WriteHTML($html);

$pdf = $mpdf->Output('', 'S');
$ob = ob_get_contents();
ob_end_clean();

if (headers_sent())
    die('Some data has already been output to browser, can\'t send PDF file');
header('Content-Description: File Transfer');
header('Content-Transfer-Encoding: binary');
header('Cache-Control: public, must-revalidate, max-age=0');
header('Pragma: public');
header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
header('Content-Type: application/force-download');
header('Content-Type: application/octet-stream', false);
header('Content-Type: application/download', false);
header('Content-Type: application/pdf', false);
if (!isset($_SERVER['HTTP_ACCEPT_ENCODING']) OR empty($_SERVER['HTTP_ACCEPT_ENCODING'])) {
    header('Content-Length: '.strlen($pdf));
}
header('Content-disposition: attachment; filename="invoice.pdf"');
echo $pdf;
exit;
Was it helpful?

Solution

While there is no answer and because I've not found any other appropriate solution, here is summary of what I have so far (mainly copy from my question above):

ob_start(); // <--| This is very important to start output buffering and to catch out any possible notices
include(DIR_MPDF.'mpdf.php');
$html = $this->render(TRUE);

$mpdf = new mPDF('utf-8','A4');

$mpdf->useOnlyCoreFonts = true;
$mpdf->SetDisplayMode('fullpage');
$mpdf->SetAutoFont(0);

$stylesheet = file_get_contents(DIR_APPLICATION.'view/stylesheet/declaration.css');
$mpdf->WriteHTML($stylesheet,1); // <--| By the second param we are saying to MPDF that it is icnluding only stylesheet

$mpdf->WriteHTML($html);

$pdf = $mpdf->Output('', 'S'); // <--| With the binary PDF data in $pdf we can do whatever we want - attach it to email, save to filesystem, push to browser's PDF plugin or offer it to user for download
$ob = ob_get_contents(); // <--| Here we catch out previous output from buffer (and can log it, email it, or throw it away as I do :-) )
ob_end_clean(); // <--| Finaly we clean output buffering and turn it off

// The next headers() section is copied out form mPDF Output() method that offers a PDF file to download
if (headers_sent())
    die('Some data has already been output to browser, can\'t send PDF file');
header('Content-Description: File Transfer');
header('Content-Transfer-Encoding: binary');
header('Cache-Control: public, must-revalidate, max-age=0');
header('Pragma: public');
header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
header('Content-Type: application/force-download');
header('Content-Type: application/octet-stream', false);
header('Content-Type: application/download', false);
header('Content-Type: application/pdf', false);
if (!isset($_SERVER['HTTP_ACCEPT_ENCODING']) OR empty($_SERVER['HTTP_ACCEPT_ENCODING'])) {
    header('Content-Length: '.strlen($pdf));
}
header('Content-disposition: attachment; filename="invoice.pdf"');
echo $pdf; // <--| With the headers set PDF file is ready for download after we call echo
exit;

As written in the comment above, it is then just upon me (or client :-) ) what will be done with the PDF data returned from mPDF. I use this PDF generating on more places through the application and mostly offer PDF just for download but I also attaches it to email (user makes a payment, I generate the PDF invoice and send it via email).

I have found no solution (and also have no more time to do so) to stop mPDF generate notices and haven't yet lost my mind to "repair" the mpdf.php (with its 1.34 MB of PHP code) therefore this is (for now) the only solution that works for me.

Maybe it will help somebody.

OTHER TIPS

It seems the error occurs just when it tries to write out the new table headings for each page. I commented out in V 5.4 line 26210

#$this->TableHeaderFooter($tablefooter,$tablestartpage,$tablestartcolumn,'F',$level, $firstSpread, $finalSpread);   // mPDF 5.3.36

The heading where not getting drawn regardless so commenting out this line had no effect other than killing the notices.

If you use $mpdf->Output() after ob_end_clean(), you can even display the PDF without notices in the browser! I use this in OpenCart. But you need to use ob_start() and ob_end_clean().

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top