FPDF header() image Cannot open image 问题

FPDF header() image Can not open image issue

对于 FPDF header() 图像重新调整低于错误

Uncaught Exception: FPDF error: Can not open image file:xxxxx.com

我也检查了图像路径文件夹和文件权限。

请任何人帮助解决问题。

您正在定义 FPDF 的一个子类,称为 PDF,但您没有使用它。将 $pdf = new FPDF() 更改为 $pdf = new PDF()

需要'LIBRARIES/FPDF/extended_fpdf.php'; $pdf = 新 PDF ();

$pdf->图片('ImagePath');

获得扩展的 fpdf

将图像 URL 更改为 DOCUMENT_ROOT URL

$ImagePath ='http:xxxxxxxxxxx.com/image/image1.png';

$ImagePath = $_SERVER["DOCUMENT_ROOT"].'/image/image1.png';


$pdf->Image($ImagePath);