如何从 Delphi 创建符合 PDF/X-3:2002 标准的 PDF 文件?

发布于 2024-12-01 15:15:43 字数 332 浏览 2 评论 0原文

我需要从我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少年亿悲伤 2024-12-08 15:15:43

你如何管理你的色彩?

如果您在 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:

  • Embed fonts;
  • Include color profile;
  • Contain metadata.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文