所以我有一个图像字符串,我插入到一个网页中,标题告诉浏览器它是一个图像。
所以页面看起来像这样:
<?php
header('Content-Type: image/png');
echo $image_data;
?>
http://website.com/randomString.png
用于抓取图像(使用.htaccess)
当我使用以下代码时,我收到错误FPDF error: Unsupported image type
$imagePath = file_get_contents("http://website.com/".$randomString.".png");
$pdf->Image($imagePath,159,185,27);
有谁知道我能做些什么来摆脱这个错误?
答案 0 :(得分:0)
将Image
替换为MemImage
(并从下面的列表中复制类或自行复制功能),否则它想要从文件中读取图像。