处理大图像
我正在尝试将大约 (1200 x 100) 的大 jpeg 转换为 PDF 文档。
我目前正在使用 FPDF 并使用以下代码:
<?php
require('fpdf.php');
$pdf =& new FPDF('p','pt','a4');
$pdf->AddPage();
$pdf->Image("photo.jpg");
$pdf->Output("photo.pdf",'F');
?>
PDF 创建得很好,但图像被切断并且无法显示全部内容。
I am trying to convert a large jpeg around (1200 x 100) to a PDF document.
I currently am using FPDF and am using this following code:
<?php
require('fpdf.php');
$pdf =& new FPDF('p','pt','a4');
$pdf->AddPage();
$pdf->Image("photo.jpg");
$pdf->Output("photo.pdf",'F');
?>
The PDF is created fine, but the image gets cut off and doesn't display all of it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,FPDF 以 72dpi 插入图像,除非您另有指定,在这种情况下,您的图像尺寸为 16.7 x 1.4 英寸,超出了页面尺寸。
By default, FPDF inserts images at 72dpi unless you specify otherwise, in which case your image comes out at 16.7 x 1.4 inches, which exceeds the page size.