Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 fpdf 将图像从文件服务器转换为 pdf 的最简单方法是什么?在我的数据库中,我只存储了图像 URL,但我需要获取实际文件。
很好的问题,我也遇到了这个问题并尝试了不同的东西,比如 URL2FILE。我使用的最后一种方法将在上面发布。
设置你的变量:
$image1 = "img/products/image1.jpg";
您可以简单地创建一个新字符串并添加扩展名
然后找到一个单元格,定位它。$this->Cell( 40, 40, $pdf->Image($image1, $pdf->GetX(), $pdf->GetY(), 33.78), 0, 0, 'L', false );