iTextSharp 获取 PDF DPI
如何将我正在从硬盘读取的 PDF 的 DPI 获取到 iTextSharp 中?
How can I get the DPI of the PDF that I am reading from my hard drive into iTextSharp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PDF 的定义中不一定使用 DPI。 PDF 允许文档创建者定义自己的用户坐标空间,该空间可能会也可能不会映射到类似于每英寸点数的任何内容。
PDF's do not necessarily use DPI in their definitions. PDF's allow the document creator to define their own user coordinate space which may or may not map to anything similar to Dots Per Inch.
检查此如何使用 itextsharp 计算 pdf 中正确的图像大小?
PDF UserUnit 应给出默认用户空间单位的大小,以 1 ⁄ 72 英寸的倍数表示。
ISO-32000-1(第 8.3.2.3 节)告诉我们
从概念上讲,用户空间是一个无限的平面。该平面只有一小部分对应于输出设备的可成像区域:由页面字典中的 CropBox 条目定义的矩形区域。对于每个页面,查看或打印的默认用户空间区域可以不同。
用户空间中的坐标(与任何其他坐标空间中一样)可以指定为整数或实数,并且默认用户空间中的单位大小不会将位置限制为任何任意网格。用户空间中的坐标分辨率与设备空间中的像素分辨率没有任何关系。
Check this How to calculate the correct image size in out pdf using itextsharp ?
PDF UserUnit shall give the size of default user space units, in multiples of 1 ⁄ 72 inch.
ISO-32000-1 (section 8.3.2.3) tells us
Conceptually, user space is an infinite plane. Only a small portion of this plane corresponds to the imageable area of the output device: a rectangular region defined by the CropBox entry in the page dictionary. The region of default user space that is viewed or printed can be different for each page.
Coordinates in user space (as in any other coordinate space) may be specified as either integers or real numbers, and the unit size in default user space does not constrain positions to any arbitrary grid. The resolution of coordinates in user space is not related in any way to the resolution of pixels in device space.