- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我目前正在编写一个小工具(Python + pyPdf)来测试 PDF 的打印机一致性。
唉,我已经对第一项任务感到困惑:检测 PDF 是否有至少 3 毫米的“出血”(页面周围没有打印任何内容的边框)。我已经知道我无法检测到完整文档的出血,因为似乎没有全局性的出血。然而,在页面上我总共可以检测到五个不同的框:
媒体框
流血框
trimBox
裁剪框
艺术盒
我读了pyPdf documentation关于那些框,但我唯一理解的是 mediaBox
,它似乎代表了整个页面的大小(即纸张)。
bleedBox
很明显应该 定义出血,但情况似乎并非总是如此。
我注意到的另一件事是,例如 PDF ,所有这些框在每一页上都具有完全相同的大小(意味着根本没有出血),但是当我打开它时,有大量的出血;这让我认为各个文本元素都有自己的偏移量。
因此,显然,仅计算 mediaBox
和 bleedBox
的出血量并不是一个可行的选择。
如果有人能阐明这些盒子的实际含义以及我可以从中得出什么结论(例如,一个盒子总是比另一个小),我将非常高兴。
奖励问题:谁能告诉我 documentation 中提到的 “默认用户空间单元” 到底是什么? ?我很确定这指的是我机器上的 mm
,但我想在所有地方强制执行 mm
。
最佳答案
引自 PDF 规范 ISO 32000-1:2008由 Adobe 发布:
14.11.2 Page Boundaries
14.11.2.1 General
A PDF page may be prepared either for a finished medium, such as asheet of paper, or as part of a prepress process in which the contentof the page is placed on an intermediate medium, such as film or animposed reproduction plate. In the latter case, it is important todistinguish between the intermediate page and the finished page. Theintermediate page may often include additional production-relatedcontent, such as bleeds or printer marks, that falls outside theboundaries of the finished page. To handle such cases, a PDF pagemaydefine as many as five separate boundaries to control variousaspects of the imaging process:
The media box defines the boundaries of the physical medium on whichthe page is to be printed. It may include any extended areasurrounding the finished page for bleed, printing marks, or other suchpurposes. It may also include areas close to the edges of the mediumthat cannot be marked because of physical limitations of the outputdevice. Content falling outside this boundary may safely be discardedwithout affecting the meaning of the PDF file.
The crop box defines the region to which the contents of the pageshall be clipped (cropped) when displayed or printed. Unlike the otherboxes, the crop box has no defined meaning in terms of physical pagegeometry or intended use; it merely imposes clipping on the pagecontents. However, in the absence of additional information (such asimposition instructions specified in a JDF or PJTF job ticket), thecrop box determines how the page’s contents shall be positioned on theoutput medium. The default value is the page’s media box.
The bleed box (PDF 1.3) defines the region to which the contents ofthe page shall be clipped when output in a production environment.This may include any extra bleed area needed to accommodate thephysical limitations of cutting, folding, and trimming equipment. Theactual printed page may include printing marks that fall outside thebleed box. The default value is the page’s crop box.
The trim box (PDF 1.3) defines the intended dimensions of thefinished page after trimming. It may be smaller than the media box toallow for production-related content, such as printing instructions,cut marks, or colour bars. The default value is the page’s crop box.
The art box (PDF 1.3) defines the extent of the page’s meaningfulcontent (including potential white space) as intended by the page’screator. The default value is the page’s crop box.
The page object dictionary specifies these boundaries in the MediaBox,CropBox, BleedBox, TrimBox, and ArtBox entries, respectively (seeTable 30). All of them are rectangles expressed in default user spaceunits. The crop, bleed, trim, and art boxes shall not ordinarilyextend beyond the boundaries of the media box. If they do, they areeffectively reduced to their intersection with the media box. Figure86 illustrates the relationships among these boundaries. (The crop boxis not shown in the figure because it has no defined relationship withany of the other boundaries.)
下面是一个很好的图形,显示了这些框之间的相互关系:
很多情况下只设置媒体框的原因是
对于用于电子消费(即在计算机上阅读)的 PDF,其他框几乎无关紧要;和
即使在印前环境中,它们也不再像以前那样必要,参见。 article佩德罗在他的评论中提到。
关于你的“红利问题”:用户空间单位默认为1⁄72英寸;但是,自 PDF 1.6 起,可以使用页面字典中的 UserUnit 条目将其更改为该大小的任何(不一定是整数)倍数。在现有 PDF 中更改它本质上是缩放它,因为用户空间单位是页面的设备独立坐标系中的基本单位。因此,除非您想更新页面描述中引用坐标的每条命令以保持页面尺寸,否则您不会想要强制使用毫米用户空间单位...;)
关于python - PDF 出血检测,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13236370/
这是一个与 Get OS-Version in WinRT Metro App C# 相关的问题但不是它的重复项。 是否有任何选项可以从 Metro 应用程序检测系统上是否有可用的桌面功能?据我所知,
我想在闹钟响起时做点什么。例如, toast 或设置新闹钟。我正在寻找可以检测闹钟何时响起的东西。首先,我在寻找广播 Action ,但找不到。也许是我的错? 当闹钟响起时,还有其他方法可以做些什么吗
如果某个 JS 添加了一个突变观察者,其他 JS 是否有可能检测、删除、替换或更改该观察者?我担心的是,如果某些 JS 旨在破坏某些 DOM 元素而不被发现,那么 JS 可能想要摆脱任何观察该 DOM
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想要改善这个问题吗?更新问题,以便将其作为on-topi
有没有办法在您的 Activity/应用程序中(以编程方式)知道用户已通过 USB 将您的手机连接到 PC? 最佳答案 有人建议使用 UMS_CONNECTED自最新版本的 Android 起已弃用
我正在想办法测量速度滚动事件,这将产生某种代表速度的数字(相对于所花费的时间,从滚动点 A 到点 B 的距离)。 我欢迎任何以伪代码形式提出的建议...... 我试图在网上找到有关此问题的信息,但找不
某些 JavaScript 是否可以检测 Skype 是否安装? 我问的原因是我想基于此更改链接的 href:如果未安装 Skype,则显示一个弹出窗口,解释 Skype 是什么以及如何安装它,如果已
我们正在为 OS X 制作一个使用 Quartz Events 移动光标的用户空间设备驱动程序,当游戏(尤其是在窗口模式下运行的游戏)无法正确捕获鼠标指针时,我们遇到了问题(= 将其包含/保留在其窗口
我可以在 Controller 中看到事件 $routeChangeStart,但我不知道如何告诉 Angular 留下来。我需要弹出类似“您要保存、删除还是取消吗?”的信息。如果用户选择取消,则停留
我正在解决一个问题,并且已经花了一些时间。问题陈述:给你一个正整数和负整数的数组。如果索引处的数字 n 为正,则向前移动 n 步。相反,如果为负数(-n),则向后移动 n 步。假设数组的第一个元素向前
我试图建立一个条件,其中 [i] 是 data.length 的值,问题是当有超过 1 个值时一切正常,但当只有 1 个值时,脚本不起作用。 out.href = data[i].hr
这是我的问题,我需要检测图像中的 bolt 和四分之一,我一直在搜索并找到 OpenCV,但据我所知它还没有在 Java 中。你们打算如何解决这个问题? 最佳答案 实际上有一个 OpenCV 的 Ja
是否可以检测 ping? IE。设备 1 ping 设备 2,我想要可以在设备 2 上运行的代码,该代码可以在设备 1 ping 设备时进行检测。 最佳答案 ping 实用程序使用的字面消息(“ICM
我每天多次运行构建脚本。我的感觉是我和我的同事花费了大量时间等待这个脚本执行。现在想知道:我们每天花多少时间等待脚本执行? .我可以对总体平均值感到满意,即使我真的很想拥有每天的数据(例如“上周一我们
我已经完成了对项目的编码,但是当我在客户端中提交了源代码时,就对它进行了测试,然后检测到内存泄漏。我已经在Instruments using Leaks中进行了测试。 我遇到的问题是AVPlayer和
我想我可以用 std.traits.functionAttributes 来做到这一点,但它不支持 static。对于任何类型的可调用对象(包含 opCall 的结构),我如何判断该可调用对象是否使用
我正在使用多核 R 包中的并行和收集函数来并行化简单的矩阵乘法代码。答案是正确的,但并行版本似乎与串行版本花费的时间相同。 我怀疑它仅在一个内核上运行(而不是在我的机器上可用的 8 个内核!)。有没有
我正在尝试在读取 csv 文件时编写一个这样的 if 语句: if row = [] or EOF: do stuff 我在网上搜索过,但找不到任何方法可以做到这一点。帮忙? 最佳答案 wit
我想捕捉一个 onFontSizeChange 事件然后做一些事情(比如重新渲染,因为浏览器已经改变了我的字体大小)。不幸的是,不存在这样的事件,所以我必须找到一种方法来做到这一点。 我见过有人在不可
我有一个使用 Windows 服务的 C# 应用程序,该服务并非始终打开,我希望能够在该服务启动和关闭时发送电子邮件通知。我已经编写了电子邮件脚本,但我似乎无法弄清楚如何检测服务状态更改。 我一直在阅
我是一名优秀的程序员,十分优秀!