FPDF error: Image file has no extension and no type was specified:
当我尝试这样做时收到的错误是:
<img src="https://chart.googleapis.com/chart?cht=qr&chs=150x150&chl=LG-80294959&choe=UTF-8">
在我的 html 中,该 FPDF 将 html2pdf 转换。
那么我该怎么做呢?我真的需要这个 pdf 中的 QR 图表。
FPDF error: Image file has no extension and no type was specified:
当我尝试这样做时收到的错误是:
<img src="https://chart.googleapis.com/chart?cht=qr&chs=150x150&chl=LG-80294959&choe=UTF-8">
在我的 html 中,该 FPDF 将 html2pdf 转换。
那么我该怎么做呢?我真的需要这个 pdf 中的 QR 图表。
在这个确切的问题上花了几个小时后,我终于弄明白了。首先,正如其他人所建议的那样,我不需要在我的网址末尾添加一个 &.png 。关键是标签中的空格。
$chart_url = str_replace(" ","%20",$chart_url);
echo '< img src="'.$chart_url.'"/>'; (remove the space between < img)
以上工作完美。
这是所要求的完整代码。我删除了页眉和页脚...
<?
import('html2pdf.class');
ob_start();
?>
<style type="text/css">
</style>
<page backtop="120px" backbottom="105px" backleft="10mm" backright="10mm" style="font-size: 10pt">
<bookmark title="Test" level="0" ></bookmark>
<img src="https://chart.googleapis.com/chart?cht=qr&chs=150x150&chl=VS-26258807&choe=UTF-8" />
</page>
<?
$html = ob_get_clean();
// init HTML2PDF
$html2pdf = new HTML2PDF('P', 'A4', 'fr', true, 'UTF-8', array(0, 0, 0, 0));
// display the full page
$html2pdf->pdf->SetDisplayMode('fullpage');
// convert
$html2pdf->writeHTML($html);
// send the PDF
return $html2pdf->Output('shop_preview.pdf','true');
return $file;
然后我简单地回显了返回的'$file'。
这是我使用的 fpdf 类:http: //html2pdf.fr/en/download