找到.exe的图标

时间:2009-10-05 13:52:04

标签: c# find icons exe locate

我有一个.exe文件的路径名。

如果将此文件放在桌面上,如何找到Windows将使用的图标路径? (我想在我自己的程序中显示这个图标。)

我需要能够在运行时通过我的C#程序找到图标。

在Visual Studio 2008中使用C#。

3 个答案:

答案 0 :(得分:6)

如果不久前在网上找到这个代码就可以了:

class Win32
{
    public const uint SHGFI_ICON = 0x100;
    public const uint SHGFI_LARGEICON = 0x0; // 'Large icon
    public const uint SHGFI_SMALLICON = 0x1; // 'Small icon

    [DllImport("shell32.dll")]
    public static extern IntPtr SHGetFileInfo(string pszPath, uint dwFileAttributes, ref SHFILEINFO psfi, uint cbSizeFileInfo, uint uFlags);

    public static Bitmap GetFileIcon(string fName)
    {
        IntPtr hImgSmall; //the handle to the system image list
        SHFILEINFO shinfo = new SHFILEINFO();
        hImgSmall = Win32.SHGetFileInfo(fName, 0, ref shinfo, (uint)Marshal.SizeOf(shinfo), Win32.SHGFI_ICON | Win32.SHGFI_SMALLICON);
        return Icon.FromHandle(shinfo.hIcon).ToBitmap();
    }
}


[StructLayout(LayoutKind.Sequential)]
public struct SHFILEINFO
{
    public IntPtr hIcon;
    public IntPtr iIcon;
    public uint dwAttributes;
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 260)]
    public string szDisplayName;
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 80)]
    public string szTypeName;
};

你还需要

using System.Drawing;
using System.Runtime.InteropServices;

引用所有适当的类

答案 1 :(得分:0)

默认图标是嵌入在索引0的exe中的图标。

查看:项目属性>应用程序选项卡>图标。

答案 2 :(得分:0)

This CodeProject article似乎做得很好。它提供了一个IconExtractor类,它将所有Win32 API内容封装到一个不错的托管界面中。

你可以这样使用它:

using TKageyu.Utils;

...

using (IconExtractor ie = new IconExtractor(@"D:\sample.exe")) 
{
    Icon icon0 = ie.GetIcon(0);
    Icon icon1 = ie.GetIcon(1);

    ...

    Icon[] splitIcons = IconExtractor.SplitIcon(icon0);

    ...
}