我使用http://www.ashberg.de/php-barcode/脚本来生成条形码。我现在需要将条形码从 html 导入 PDF。(我将 html2pdf_v4.03 用于 html -> pdf)
<div style=" display:inline;"><img id='barcode' alt='barcode' src="scripts/barcode/barcode.php?mode=jpg" /></div>
可以,但是当我将其导入 PDF 时会出错。所以我决定尝试生成条形码并将其作为 img 保存到一个目录中,然后在我转换为 PDF 的 html 中引用它。
所以我尝试了
file_put_contents('scripts/barcode.jpg', file_get_contents('scripts/barcode/barcode.php?mode=jpg'));
我无法打开流:错误
如果我尝试
file_put_contents('scripts/barcode.jpg', file_get_contents('scripts/barcode/barcode.php'));
它运行但它创建的图像文件不可读/损坏。
请协助?