作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
有没有办法使用 FPDF 库来降低输出 pdf 的 DPI 而不会影响其大小?
最佳答案
据我所知,PDF 文档没有 DPI 设置,因为它们是矢量对象。我假设您实际上指的是嵌入式光栅图像(JPEG、GIF...)。在这种情况下,只需检查 documentation for the Image() function : 第四和第五个参数($w
和$h
) 如果写负值就可以表示想要的DPI:
// Insert a logo in the top-left corner at 300 dpi
$pdf->Image('logo.png',10,10,-300);
关于php - 有没有办法使用 FPDF 库设置输出 pdf 的 DPI?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10178560/
我是一名优秀的程序员,十分优秀!