4

下面是我使用 mpdf 将图像转换为 pdf 的代码。$html 包含upload/tulips.jpg 但是,当函数执行创建的 pdf 文件时,图像图标会显示在该位置upload/tulips.pdf。请告诉我为什么会发生这种情况,因为没有错误出现。

   private function ConvertImageToPdf($inputPath,$outputPath)
            { 
                $mpdf=new mPDF();
                $html='<img src='.$inputPath.'/>';
                $mpdf->WriteHTML($html);
                $mpdf->Output($outputPath.".pdf",'F');
                $mpdf->debug = true;

            }
4

2 回答 2

11
$html='<img src="'.$inputPath.'"/>';

例如""围绕图像路径,你应该很好(如果图像存在)

在 mPDF-package/examples中有一个example04_images.php您可以试用。

PS:你应该$mpdf->debug = true 在之前设置 $mpdf->Output()

于 2013-09-02T10:48:11.647 回答
3

它的逗号问题

$html='<img src="'.$inputPath.'"/>';
于 2013-09-02T10:45:18.947 回答