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图表。
答案 0 :(得分:4)
在这个确切的问题花了好几个小时后,我终于明白了。首先,正如其他人所建议的那样,我不需要在我的网址末尾添加一个&amp; .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