0
我使用http://www.ashberg.de/php-barcode/腳本來生成條形碼。我現在需要從HTML中將條形碼導入到PDF中。 (IM使用html2pdf_v4.03爲HTML - > PDF)php image保存到目錄並保存到pdf
<div style=" display:inline;"><img id='barcode' alt='barcode' src="scripts/barcode/barcode.php?mode=jpg" /></div>
的作品,但是當我將其導入到PDF它的錯誤。所以我決定嘗試生成條形碼並將其保存爲img格式,並在html中引用它,然後轉換爲PDF。
所以,我想
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'));
它運行,但圖像文件,它會創建無法讀取/破。
請協助?