FPDF 横向图像问题 [PHP]

发布于 2025-01-07 07:28:39 字数 201 浏览 1 评论 0原文

我在横向模式下使用 FPDF 时遇到问题。整个文本内容效果很好。

但如果我插入宽度超过 21 厘米(8.27 英寸)的图像,它会向下跳一行。我尝试使用

$pdf -> setLineWidth(280); 但这不起作用。

有人知道这个问题的解决方案吗?

非常感谢,问候

朱利安

I have a problem with FPDF in landscape mode. The whole text-stuff works pretty well.

But if I insert an image that is wider than 21 cm (8,27 inch), it jumps one line down. I tried to use

$pdf -> setLineWidth(280); but that doesn't work.

Does anybody know a solution on this issue?

Thanks a lot, greets

Julian

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

寄居人 2025-01-14 07:28:39

因为我可以粘贴一些代码。
但这永远不会帮助你理解我的问题。就是这样。

$pdf = new FPDF("L", "mm", "A4");
$pdf -> Open();
$pdf -> SetMargins(6, 15);
$pdf -> AddPage();
$pdf -> SetAutoPageBreak(false);
$pdf -> Image("projekt.jpg", "150", "8", "60");

我将其放置在距左侧 150 毫米的位置。图片宽度加上 60 毫米等于 210 毫米,即纵向模式下 A4 页面的确切宽度。
但是,当我将页面设置为横向模式(新宽度约为 290 毫米)并将图像放置在距左侧 151 毫米的位置时,它会向下跳一行。

因此,FPDF 的 Image(); 函数似乎无法识别文档的方向。

也许有人找到了解决方案...

Of cause I can paste some code.
But it will never help you understanding my problem. It's just like it is.

$pdf = new FPDF("L", "mm", "A4");
$pdf -> Open();
$pdf -> SetMargins(6, 15);
$pdf -> AddPage();
$pdf -> SetAutoPageBreak(false);
$pdf -> Image("projekt.jpg", "150", "8", "60");

I place it 150 mm from left. Plus 60 mm width of the picture equals 210 mm, the exact width of an A4 page in Portrait mode.
But when I put the page into landscape mode (new width is about 290 mm), and place the image 151 mm from left, it jumps one line down.

So it seems as FPDF's Image(); function doesn't recognize the document's orientation.

Maybe someone got a solution…

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