处理大图像

发布于 2024-11-06 11:39:59 字数 298 浏览 4 评论 0原文

我正在尝试将大约 (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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故人爱我别走 2024-11-13 11:40:00

默认情况下,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文