更改 docx、pdf 文档以便将其打印为书籍
我正在获取一份 docx。我需要更改它(例如使用 poi),以便它可以作为一本书打印。即,如果我有 6 页的 docx,我想获取 3 页的 docx,其中新 docx 的第 1 页上有第 1 和 6 页,新 docx 的第 2 页上有 2 和 5 页,新 docx 的第 3 页上有第 3-4 页文档。
有人可以提供一个这样的重新洗牌的例子吗(如果例子是用java编写的那就太好了)?
谢谢你!
I'm getting a docx. I need to changed it(e.g. with poi) so that it could be printed as a book. i.e. if I have docx with 6 pages, I want to get docx with 3 pages where we have pages 1 and 6 on page 1 of new docx, 2 and 5 on page 2 of new docx and pages 3-4 on page 3 of new docx.
Can someone provide an example(it would nice if example is written java) of such reshuffle?
thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有很多用于操作 PDF 的工具。我通常会使用 pdftk 或 pdfjam
既然你提到了 Java,那么 Multivalent 项目有免费的(如啤酒,而不是自由)用于操作 PDF 的 java 工具。
There are a lot of tools out there for manipulating PDFs. I usually reach for pdftk or pdfjam
Since you mention Java, the Multivalent project has free (as in beer, not as in freedom) java tools for manipulating PDFs.
这听起来并不容易,因为您必须定义“压缩”或“减少”页面的策略。用于管理 .docx 的 Apache POI HWPF 正处于早期开发阶段,因此似乎不是一个选择。
This not sounds to be easy, as you have to define the strategy to "compact" or "reduce" pages. Apache POI HWPF for managing .docx is in early development, so seems to not be an option.