我想在我创建的 PDF 文件中插入图像。但是,它根本不会很好地定位。
如果我这样做:
$fpdf->Image($row_products['prod_imagelarge'], 10);
图像会出现,但是它们太大了。
如果我这样做:
$fpdf->Image($row_products['prod_imagelarge'],30, 40, 40, 40);
并非所有图像都会出现。每页仅显示 1 张图像,但尺寸正确。
实际上,我在 while 循环中插入了一个图像。我想在pdf文件中显示的是:(按顺序)
-product name (works fine)
-product image (the problem is here!)
-product description (works fine)