如何将文件的缩略图提取到 .NET 中的图像文件中?
我正在尝试创建一个用于浏览文件的内容目录程序。我想像 Windows 中的资源管理器那样显示文件的缩略图。如何使用 C#.Net 将 Windows 资源管理器显示的缩略图提取到 System.Drawing.Image 的实例中?
我相当确定我需要使用 this 或与IExtractImage。然而,当涉及到使用 COM、pinvoke、互操作等进行任何操作时,我感到非常迷失。
I'm trying to create a content catalog program that is used to browse files. I want to show the thumbnail of the files like Explorer does in windows. How can I use C#.Net to extract the thumbnail that windows explorer shows into an instance of System.Drawing.Image?
I'm fairly certain I need to use this or something related to IExtractImage. Yet I'm pretty lost when it comes to doing anything with COM, pinvoke, interop etc..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这个 StackOverflow 问题中接受的答案:
C# 通过 windows api 从文件获取缩略图
您链接的代码vbaccelerator 站点上的 2003 年发布的内容显示了几个内存管理问题。
Have a look at the accepted answer in this StackOverflow question:
C# get thumbnail from file via windows api
The code you linked to at the vbaccelerator site is from 2003 and exhibits several memory management problems.