Windows API代码包-外壳文件不生成PDF位图

Windows API Code Pack - ShellFile not generating PDF bitmap(Windows API代码包-外壳文件不生成PDF位图)
本文介绍了Windows API代码包-外壳文件不生成PDF位图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用前面堆栈溢出问题中的代码:

System.Drawing.Bitmap image;
ShellFile f = ShellFile.FromFilePath(fileLocation);
image = f.Thumbnail.ExtraLargeBitmap;
image.Save(tempfile, ImageFormat.Png);

我正在尝试使用Windows API获取PDF的缩略图

我被误认为这会生成一个类似于PDF文档第一页的图像文件。

但实际情况是,它看起来并不像那样,只是看起来像PDF图标。

在实际按预期工作之前,我是否遗漏了什么内容?

PDF文件已与Adobe Reader正确关联。

在Windows资源管理器中浏览目录时,我是否查看与文档关联的缩略图。

我应该指出的是,在处理Excel和Word文档时,代码实际上确实正确地提取了缩略图。

编辑(参考):

  • C# get thumbnail from file via windows api
  • Get thumbnail of any file, not only image files on Windows XP/Vista
  • Windows API Code Pack Thumbnail gives preview thumb of pdf but not Word or Excel

推荐答案

您需要指定需要的是缩略图,而不是图标(默认设置)。 将您的代码更改为:

System.Drawing.Bitmap image;
ShellFile f = ShellFile.FromFilePath(fileLocation);

//force the actual thumbnail, not the icon
f.Thumbnail.FormatOption = ShellThumbnailFormatOption.ThumbnailOnly;

image = f.Thumbnail.ExtraLargeBitmap;
image.Save(tempfile, ImageFormat.Png);

这篇关于Windows API代码包-外壳文件不生成PDF位图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)