如何在C#中使用SHExtractIconsW dll函数,我设法在AutoIt中执行此操作,
Local $arResult = DllCall('shell32.dll', 'int', 'SHExtractIconsW', _
'wstr', $sIcon, _
'int', $aDetails[5], _
'int', $iSize, _
'int', $iSize, _
'ptr*', 0, 'ptr*', 0, 'int', 1, 'int', 0)
这是微软网站的引用,http://msdn.microsoft.com/en-us/library/windows/desktop/bb762163(v=vs.85).aspx
基本上我想从exe文件中提取图标,但这里的几乎所有示例都不能这样做,在autoit中我可以用SHExtractIconsW来做,所以我想在C#中尝试。
注意:我希望64x64最高为256x256图标大小,而不是。
答案 0 :(得分:3)
这似乎是一个非常糟糕的documented功能。
phIcon
的文档说:
当此函数返回时,包含指向图标句柄数组的指针。
但由于参数的类型为HICON*
,因此调用者必须提供数组。
pIconId
的文档也是错误的。事实证明它也是一个数组。
所有编组都可以使用默认设置完成。由于此API没有ANSI版本,请为其指定全名SHExtractIconsW
并将Charset
设置为Unicode。
就documentation而言,没有提到被调用SetLastError
。
[DllImport("Shell32.dll", CharSet=CharSet.Unicode, ExactSpelling=true)]
static extern uint SHExtractIconsW(
string pszFileName,
int nIconIndex,
int cxIcon,
int cyIcon,
IntPtr[] phIcon,
uint[] pIconId,
uint nIcons,
uint flags
);
要调用它,您需要像这样分配数组:
IntPtr[] Icons = new IntPtr[nIcons];
uint[] IconIDs = new uint[nIcons];
最后,我回应@Cody的评论。由于此API明确记录不正确,因此我尝试使用已正确记录的替代API,并且您可以依赖该API。
由于您似乎正在努力让这一切全部发挥作用,因此这是一个有趣的程序,可以从shell32.dll
中提取和显示图标。我没有尝试进行任何错误检查,也没有在图标上调用DestroyIcon
等等。
using System;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication12
{
public partial class Form1 : Form
{
[DllImport("Shell32.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
static extern uint SHExtractIconsW(
string pszFileName,
int nIconIndex,
int cxIcon,
int cyIcon,
IntPtr[] phIcon,
uint[] pIconId,
uint nIcons,
uint flags
);
public Form1()
{
InitializeComponent();
}
private IntPtr[] Icons;
private int currentIcon = 0;
uint iconsExtracted;
private void Form1_Load(object sender, EventArgs e)
{
uint nIcons = 1000;
Icons = new IntPtr[nIcons];
uint[] IconIDs = new uint[nIcons];
iconsExtracted = SHExtractIconsW(
@"C:\Windows\System32\shell32.dll",
0,
256, 256,
Icons,
IconIDs,
nIcons,
0
);
if (iconsExtracted == 0)
;//handle error
Text = string.Format("Icon count: {0:d}", iconsExtracted);
}
private void timer1_Tick(object sender, EventArgs e)
{
pictureBox1.Image = Bitmap.FromHicon(Icons[currentIcon]);
currentIcon = (currentIcon + 1) % (int)iconsExtracted;
}
}
}