我正在寻找PDF优化技术/预处理,以将Print ready PDF转换为媒体就绪(将PDF压缩为Web PDF)。
用于呈现PDF的目标设备是iOS和Android
Adobe Acrobat Pro等工具可为诸如减少图层,合并图层等任务提供设置。 预期输出PDF应只有三层: 1)文字 2)图像 3)特效
我们可以通过使用预飞行来完成此操作,从而选择图层并合并它们。 任何有效执行此操作的步骤,我都不希望手动在页面级别进行此类优化。
我可以在一次运行中在多个页面导入图层(比如多个image.tiff)吗?
答案 0 :(得分:1)
您可以使用 Ghostscript 。
如果您想通过Ghostscript用户界面执行此操作,可以下载 Ghostscript Studio (IDE) 并在Ghostscript处理器中使用此开关:
! >> interaction-related parameters
-dBATCH ! keep gs out from going into interactive loop reading
-dNOPAUSE ! disables the prompt and pause at the end of each page
! >> device selection parameters
-sDEVICE = pdfwrite ! pdf device
-dPDFSETTINGS=/ebook
另外,请看一下这个答案:Optimize PDF files (with Ghostscript or other)