如何从 Delphi 创建符合 PDF/X-3:2002 标准的 PDF 文件?
我需要从我的 Delphi 应用程序创建一个符合 PDF/X-3:2002 标准的 PDF 文档。
这是客户的严格要求,因为 PDF 文件将在印刷机中印刷。
我有 wPDF 但它不支持。 (请参阅:http://wpcubed.com/forum/viewtopic.php?t=5693 )
如果当前不存在任何组件,那么我可以使用哪些技术和其他软件来完成此任务?该应用程序允许用户将图像和富文本添加到构成 PDF 页面的模板 (TPanels) 上。
From my Delphi application I require to create a PDF document that is PDF/X-3:2002 compliant.
This is a strict requirement of the client as the PDF files are going to be printed in a printing press.
I have wPDF but it does not support. (Please see: http://wpcubed.com/forum/viewtopic.php?t=5693)
If no component currently exists, then what techniques and other software can I use to accomplish this? The application allows the user to add images and rich-text onto templates (TPanels) that should make up the pages of the PDF.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你如何管理你的色彩?
如果您在 Delphi 应用程序中使用 RGB 颜色来处理图像,PDF/X-3:2002 将不仅仅是标记问题。
PdfLib 确实处理这种格式,并且可以在 Delphi 中使用。
我想默认的 PDF/A-1 设置将满足大多数 PDF/X-3 的要求,特别是:
我们的开源引擎能够生成PDF /A-1 文件 - 如果您查看规范,您也许能够生成符合 PDF/X-3:2002 标准的 PDF 文件。
How do you manage your color?
If you use RGB Colors in your Delphi application to handle the image, PDF/X-3:2002 won't be just a matter of tagging.
The PdfLib do handle this format, and can be used in Delphi.
I guess that default PDF/A-1 settings will meet most of the PDF/X-3 requirements, especially:
Our Open Source engine is able to produce PDF/A-1 files - if you take a look at the specs, you may be able to generate PDF/X-3:2002 compliant PDF files.