如何将任何文档转换为预览图像?
我正在使用 .NET,并且正在寻找一种将几乎任何文档转换为预览图像的方法。 我说都可以,但优先级是 Office 文档、PDF 和大多数图像文件。
我假设我可以以某种方式构建 Windows 资源管理器预览文档的能力...但我不知道如何实现。
你会怎么办?
I am using .NET and am looking for a way to convert just about any document into a preview image. I say any, but the priorities are Office Documents, PDF, and most image files.
I would assume that I can somehow build upon the Windows Explorer's ability to preview documents... but I do not know how.
What would you do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Windows Vista 上,您可以使用 预览处理程序 API 编写预览处理程序或使用预览处理程序在应用程序中显示预览。 该链接包含向您展示如何操作的代码。 这是一个 Photoshop 预览处理程序示例,它还介绍了一些可能的背景信息有用。
最后,这里是一个使用 C# 的示例。 它是一个 WPF 应用程序,它使用 C# 类
COMStream
从预览处理程序(这是一个非托管 COM 对象)获取预览数据。On Windows Vista you can use the preview handler API to either write a preview handler or use a preview handler to display a preview in your application. The link contains code that shows you how. Here's an example Photoshop preview handler that also goes over some background information that might be useful.
Finally, here is an example that uses C#. It's a WPF application that uses the C# class
COMStream
to get the preview data from a preview handler (which is an unmanaged COM object).