我将tcpdf与php一起使用以生成pdf文件。它可以正确显示文本。但是,当我尝试显示图像时,出现以下错误消息:“ TCPDF错误:图像文件丢失或不正确:[URL]”。 [URL]是我要显示的图像的链接。当我尝试在浏览器中打开[URL]时,图像可能会正常显示。
我尝试使用CURL修复此问题,但它使程序无响应。 我也尝试过使用@getimagesize失败。
$rep = new FrontReport(_("ASSET REGISTRATION VIEW"), "Asset Registration View", user_pagesize(), 9, $orientation);
$rep->SetHeaderType('HeaderAssetRegView');
$rep->Font();
$rep->Info($params, $cols, null, $aligns);
$rep->NewPage();
$result = get_asset_registration_details($asset_type_name, $year, $month, $emp_id);
$rep->row = 710;
while ($myrow2=db_fetch($result)) {
$asset_type_name_detail = $myrow2['asset_type_name'];
$asset_id_detail = $myrow2['asset_id'];
$reg_date_detail = $myrow2['trx_date'];
$emp_id_detail = $myrow2['emp_id'];
$emp_name_detail = $myrow2['employee_name'];
$project_code_detail = $myrow2['project_code'];
$img_root = 'https://myserver.com/ci-rest/uploads/';
$img_detail = $myrow2["file_path"];
$img_link = $img_root . $img_detail;
$no++;
$rep->TextCol(0, 1, $no, -2);
$rep->TextCol(1, 1, 'Asset Type Name', -2);
$rep->TextColLines(2, 1, ': ' . $asset_type_name_detail, -2);
$rep->TextCol(1, 2, 'Asset ID', -2);
$rep->TextColLines(2, 2, ': ' . $asset_id_detail, -2);
$rep->TextCol(1, 3, 'Reg Date', -2);
$rep->TextColLines(2, 3, ': ' . $reg_date_detail, -2);
$rep->TextCol(1, 4, 'Employee ID', -2);
$rep->TextColLines(2, 4, ': ' . $emp_id_detail, -2);
$rep->TextCol(1, 5, 'Employee Name', -2);
$rep->TextColLines(2, 5, ': ' . $emp_name_detail, -2);
$rep->TextCol(1, 6, 'Project Code', -2);
$rep->TextColLines(2, 6, ': ' . $project_code_detail, -2);
$rep->AddImage($img_link, 300, $rep->row, 80, 80);
$rep->NewLine();
}
$rep->End();
我希望输出将显示图像,而不是错误消息。
任何帮助将不胜感激。