TCPDF 缩放和质量问题
我正在从图像流生成 PDF,但实际图像的大小总是存在一些差异,并且图像也会缩小。
我正在使用 TCPDF 类,
请帮忙......
I am generating PDF from image stream but there is always a little difference in the size of actual image and the image scales down as well .
I am using TCPDF class for it
Please help....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置图像文档的分辨率为 72dpi,文档尺寸为 A4(或在 tcpdf 中设置的任何尺寸)。
然后,当您调用
$tcpdf->image('/path/to/image.ext')
时,图像应该具有正确的大小。以点的方式思考 - 像素在 tcpdf 生成的 pdf 空间中没有多大用处。
Set up your image document at a resolution of 72dpi and the document size of A4 (or whatever size you set in tcpdf).
Then when you call
$tcpdf->image('/path/to/image.ext')
the image should be the correct size.Think in points - pixels aren't much use in a tcpdf-generated pdf space.