gpt4 book ai didi

python - 在 Reportlab 中生成具有指定 DPI 的 PDF 打印版本

转载 作者:太空狗 更新时间:2023-10-29 11:45:47 24 4
gpt4 key购买 nike

我正在编写一个程序来使用 Python 的 Reportlab 生成 PDF 文件图书馆。基本上我有两个要求:

  1. 网页版:RGB 颜色,150 dpi
  2. 打印版本:CMYK 颜色,300 dpi

到目前为止,我已经生成了 pdf 并将颜色设置为 CMYK/RGB。但我无法更改 pdf 文件的 DPI。 reportlab 是否提供任何功能来设置 dpi 到指定。

此外,任何可以在Linux终端上运行的在生成pdf后转换DPI的程序也可以接受。

最佳答案

PDF 的规范没有原生 DPI - 它主要是基于矢量的(不是矢量的通常是你放在那里的光栅化的)。您嵌入的 AKA 图像将被光栅化(除非您的图像是矢量/svg)。另一方面,pdf 渲染器确实有“dpi”设置。例如,您可以在 adobe reader 中更改默认的“dpi”(或 pt-pi/每英寸点数)(我见过的大多数渲染器都支持此设置)。

Change Adobe Reader settings

如果您想要打印 300+“dpi”,并且您拥有所有基于矢量的内容,请不要担心 - 打印厂只是在他们的末端调整 dpi,然后“砰!”即时 300+ dpi(理论上他们可以选择无限高的渲染 dpi - 基于矢量技术的荣耀)。

如果您有光栅化的图像,那么您需要预先进行一些数学运算以将 dpi 转换为点,其中点与真实世界的测量值相关,而与您查看的媒体无关。为了使事情更简单,它是 1:1 的关系(参见 here,drawImage())一般来说,如果您想要在打印机上使用 300dpi,并且您有一张您知道要拉伸(stretch) 300 点的图像,并且您的图像当前设置为 600 dpi 那么您知道您需要将图像嵌入其当前尺寸的 1/2 尺寸(可以通过接受宽度/高度参数的 drawImage() 控制)。或者,如果您有一个较小的图像并尝试扩大尺寸,它就像在气球的表面上绘图然后充气 - 它会以您不想要的方式拉伸(stretch)/扭曲(又名最好从大开始并缩小规模)。

(来源 PostScript Reference 第 12 页)

The resolution of a raster output device is a measure of the number of pixels per unit of distance along the two linear dimensions. Resolution is typically—but not necessarily—the same horizontally and vertically. Manufacturers’ decisions on device technology and price/performance tradeoffs create characteristic ranges of resolution:

• Computer displays have relatively low resolution, typically 75 to 110 pixels per inch.
• Dot-matrix printers generally range from 100 to 250 pixels per inch.
• Ink-jet and laser-scanned xerographic printing technologies are capable of medium-resolution output of 300 to 1400 pixels per inch.
• Photographic technology permits high resolutions of 2400 pixels per inch or more.

Higher resolution yields better quality and fidelity of the resulting output, but is achieved at greater cost. As the technology improves and computing costs decrease, products evolve to higher resolutions.

阅读此回复:previous image quality question

这里还有一个关于该主题的旧线程:previous thread on reportlab listserv

HTH

关于python - 在 Reportlab 中生成具有指定 DPI 的 PDF 打印版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16804196/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com