FPDF 横向图像问题 [PHP]
我在横向模式下使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为我可以粘贴一些代码。
但这永远不会帮助你理解我的问题。就是这样。
我将其放置在距左侧 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.
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…