'屏幕截图'文件数量
我正在寻找将 docx (以及后来的 excel 和 powerpoint)文档的第一页转换为图像的方法。我宁愿不手动解析文档的整个 xml,因为这看起来工作量很大;)
所以我想我只是想收集一些关于如何最好地解决这个问题的资源。
谢谢!
I am looking for ways to convert the first page of a docx (and later excel and powerpoint) document to an image. I would rather not manually parse the document's entire xml since that seems like a lot of work ;)
So I guess I'm just trying to collect some resources on how to best tackle this.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
渲染是最困难的任务:-)
我会这样做:
DOCX -> PDF(通过 Aspose.Words) ->通过 Aspose.Pdf.Kit 渲染
不是一个完美的解决方案(就“看起来像是从 Word 打印出来的”而言),但是是我能想到的最合适的解决方案。
此外,您可以使用一些 Microsoft Office 互操作性,这需要安装 Office。
Rendering is the most difficult task :-)
I would go something like this:
DOCX -> PDF (via Aspose.Words) -> Render via Aspose.Pdf.Kit
Not a perfect solutions (in terms of "looks like printed from Word"), but the most suitable I can think of.
In addition, you could use some Microsoft Office interop, which would require Office to be installed.