Ascii 将文件打印为 PDF

发布于 2024-12-22 05:46:36 字数 91 浏览 0 评论 0原文

如何将 ascii 打印文件(带有换行符和换页 ctrl 字符的文本文件)转换为 PDF 文档,并使用预先打印的信纸作为模板或背景图像。在 Java 中如何做到这一点。

How to convert an ascii print file ( text file with line feed and form feed ctrl characters) into a PDF Document with the pre printed stationery as template or background image. How can this be done in Java.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

束缚m 2024-12-29 05:46:37

您可以使用以下两种方式之一创建 PDF:

  • 使用 iText 在 Java 代码中
  • 通过使用 Velocity 之类的工具创建 FO(将文本数据映射到模板中)并通过 FO 转换器运行它来创建 PDF。

这样你就可以得到 PDF 了。您可以通过在 Adob​​e Reader 中打开它并从那里打印或使用 Java 打印 API 将其发送到打印机来打印它。

You can create a PDF using either one of two ways:

  • In Java code using iText
  • By creating an FO using something like Velocity (mapping your text data into a template) and running it through an FO transformer to create a PDF.

That gets you the PDF. You can print it by either opening it in Adobe Reader and printing from there OR by sending it to a printer using the Java print API.

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