我想在創建的PDF文件中插入圖像。但是,它不會很好地定位。使用fpdf在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)