在 .NET 和 Java 中将 Word 文档的第一页呈现为图像
我们正在开发一个内容管理系统,我们需要将 Word 文档的第一页动态显示为缩略图。使用 Java 和 .NET 执行此操作的过程可能是什么?
We're working on a content management system where we need to dynamically show the first page of a word document as a thumbnail. What could be the process to do this using both Java and .NET.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 Java 方面,您可以使用基于 OpenOffice 的东西,因为它有 API 并且可以自动生成缩略图。 Docmosis 选项可显示缩略图 (
TemplateDetails.getThumbnail()
),JODReports 和 JODConverter 或许也能提供帮助。From the Java side, you could use something based on OpenOffice since it has an API and can automatically generate the thumbnail. Docmosis is on option which exposes the thumbnail (
TemplateDetails.getThumbnail()
), JODReports and JODConverter may also be able to help.