mPDF 5.7.1 - image displays as a broken [x]

后端 未结 11 1187
没有蜡笔的小新
没有蜡笔的小新 2020-12-29 05:59

I have a small issue with mPDF (version 5.7.1).

This code should generate PDF with image file:

 $mpdf = new mPDF();
 $html = \'

        
相关标签:
11条回答
  • 2020-12-29 06:13

    I had the same problem with PNG images being displayed as [X] when to generate PDFs with mPDF.

    I added: $mpdf->showImageErrors = true;

    After: $mpdf = new Mpdf();

    and got the error message:

    GD library required for PNG image (alpha channel)#

    So after running apt-get install php5-gd generating a PDF with a PNG worked like a charm!

    0 讨论(0)
  • 2020-12-29 06:18

    Ok. After the last comment on question (14:30). Here the exact same code that IS working with mPDF 5.4. And it saves it's output on scripts directory as test.pdf. Firewall issues?

    Edited

    I have the following directories / files:

    • images
      • wallpaper01.jpg
      • wallpaper02.jpg
    • index.php (source code)

    So these image files are relatively starting from the script directory as it looks like.

    require_once __DIR__ . DIRECTORY_SEPARATOR . 'MPDF/mpdf.php';
    
    try {
        $mpdf = new mPDF(); 
        $mpdf->WriteHTML('<img src="images/wallpaper01.jpg" alt="" width="480">');
        $mpdf->WriteHTML('<img src="images/wallpaper02.jpg" alt="" width="480">');
        $mpdf->Output(__DIR__ . DIRECTORY_SEPARATOR . 'test.pdf', 'F');
    } catch(Exception $e) {
        echo $e;
    }
    

    Fully working example (download)

    0 讨论(0)
  • 2020-12-29 06:19

    For me, it is working as of now. Hope this will help someone.

    Solution : Try relative path of image instead of URL. Image must be hosted on the same server.

    Ex: /var/www/mysite/image/xyz.jpg

    0 讨论(0)
  • 2020-12-29 06:20

    In my case, the problem was just the usage of transparents PNG using the 6.0 version. This bug was fixed on the mpdf 6.1 version.

    I successfully solved the problem downloading the 6.1 version from here and overriding the mpdf files on my project.

    0 讨论(0)
  • 2020-12-29 06:23

    change to remove the second line before initializing $html its undefined at that time. new code will be as

    $mpdf = new mPDF();
    $html= "<img src='https://www.google.pl/images/srpr/logo11w.png' alt=''>";
    $mpdf->WriteHTML($html);
    $mpdf->debug = true; 
    $output = $mpdf->Output(); 
    exit();
    
    0 讨论(0)
  • 2020-12-29 06:26

    Including images is kinda tricky in mPDF. I had some issues as well. I found more kind of problems.

    At first you should turn on debug variable:

    $mpdf = new mPDF();    
    $mpdf->showImageErrors = true;
    

    Usualy people don't have installed GD module for PHP. On linux machine, execute:

    sudo apt-get install php5-gd
    sudo service apache2 restart
    

    On Windows servers, php_gd2.dll is included in a standard PHP installation, but is not enabled by default. To enable it, uncomment the extension=php_gd2.dll line in your php.ini file (remove the # from the beginning of that line) and restart the PHP extension. [1]

    If you get this error you probably see [x] image:

    mPDF error: IMAGE Error (http://www.domain.com/directory/image.jpg): Could not find image file

    Check the url if your image exists and if the image is accessible. If yes then you can try to change absolute URL to relative. You can try both versions:

    <img src="directory/image.jpg">
    <img src="./directory/image.jpg">
    

    Actually I also had a problem with PNG formats. Converted PNG image to JPG worked fine.

    Linking in mPDF templates should be same like for whole your framework/system.

    0 讨论(0)
提交回复
热议问题