qt获取文件—超大图标
最近做一个程序,想从EXE,DLL或者其他什么的文件中提取 图标。
从网上搜集了一下资料发现只能够提取到 比较小的图标,小图标为 16x16,大图标为32x32,这远远满足不了需求,下面是一般做法:
QString filePath;
QFileInfo fileInfo(filePath);
QFileIconProvider fileIcon();
QIcon icon=fileIcon ().icon (fileInfo);
QPixmap pixmap=icon.pixmap (128,128);
结果只能够最多得到32x32的图标。
于是我查看QFileIconProvider的实现源文件,发现主要由SHGetFileInfo这个函数实现。
//Get the small icon
#ifndef Q_OS_WINCE
val = SHGetFileInfo((const wchar_t *)QDir::toNativeSeparators(fileInfo.filePath()).utf16(), 0, &info,
sizeof(SHFILEINFO), SHGFI_ICON|SHGFI_SMALLICON|SHGFI_SYSICONINDEX|SHGFI_ADDOVERLAYS|SHGFI_OVERLAYINDEX);
//Get the big icon
#ifndef Q_OS_WINCE
val = SHGetFileInfo((const wchar_t *)QDir::toNativeSeparators(fileInfo.filePath()).utf16(), 0, &info,
sizeof(SHFILEINFO), SHGFI_ICON|SHGFI_LARGEICON|SHGFI_SYSICONINDEX|SHGFI_ADDOVERLAYS|SHGFI_OVERLAYINDEX);
这样就只能够得到16x16的小图标和32x32的大图标。
虽然上面用的是QPixmap pixmap=icon.pixmap (128,128); 但是还是只能够得到32x32的图标。
于是便琢磨着如何使用VS2010下的库呢?
思来想去水平太低了没想出个办法,但突然想到咱可以用 VS2010做个DLL 给QT调用啊。
于是在VS2010下 写个到出函数:
#include <ShellAPI.h>
#include <CommCtrl.h>
#include <commoncontrols.h>
#include <windows.h>
EXTERN_C _declspec(dllexport) HICON getJumbIcon(CONST TCHAR *filePath)
{
// Get the icon index using SHGetFileInfo
SHFILEINFOW sfi = {0};
SHGetFileInfo(filePath, -1, &sfi, sizeof(sfi), SHGFI_SYSICONINDEX);
// Retrieve the system image list.
// To get the 48x48 icons, use SHIL_EXTRALARGE
// To get the 256x256 icons (Vista only), use SHIL_JUMBO
IImageList* imageList;
HRESULT hResult = SHGetImageList(SHIL_JUMBO, IID_IImageList, (void**)&imageList);
if (hResult == S_OK) {
// Get the icon we need from the list. Note that the HIMAGELIST we retrieved
// earlier needs to be casted to the IImageList inte易做图ce before use.
HICON hIcon;
hResult = (imageList)->GetIcon(sfi.iIcon, ILD_TRANSPARENT, &hIcon);
if (hResult == S_OK) {
// Do something with the icon here.
return hIcon;
}
}
}
然后在QT里面调用:
typedef HICON (*getIcon)(CONST TCHAR *filePath); //定义函数指针,以备调用
HICON test(QString filePath)
{
QLibrary mylib("./configure/dll/icon.dll"); //声明所用到的dll文件
HICON jumbIcon;
if (mylib.load())
{
getIcon icon=(getIcon)mylib.resolve("getJumbIcon"); //援引 add() 函数
if (icon) //是否成功连接上 add() 函数
{
filePath.replace ("/","\\");
jumbIcon=icon((CONST TCHAR *)filePath.utf16 ()); //这里函数指针调用dll中的 add() 函数
return jumbIcon;
}
else
QMessageBox::information(NULL,"NO","Linke to Function is not OK!!!!");
}
else
QMessageBox::information(NULL,"NO","DLL is not loaded!");
return NULL;
}
HICON hicon=test(filePath);
QPixmap icon=QPixmap::fromWinHICON (hicon);
DestroyIcon(hicon);
最后icon便可以显示256X256的图片了。
可以更改SHIL_JUMBO来决定 图标的大小。
最后是DLL文件了。
本文出自 “悠悠幽幽” 博客
补充:软件开发 , C语言 ,