Click here to Skip to main content
Click here to Skip to main content

Extracting Icons from EXE/DLL and Icon Manipulation

By , 17 Jan 2009
 

Abstract

This article describes how to extract icons from an executable module (EXE or DLL), and also how to get the icons associated with a file.

In this article, you will find how to get the icon image that best fits the size you want to display. You can also find how to split an icon file to get its image.

Introduction

Icons are a varied lot—they come in many sizes and color depths. A single icon resource—an ICO file, or an icon resource in an EXE or DLL file—can contain multiple icon images, each with a different size and/or color depth.

Windows extracts the appropriate size/color depth image from the resource depending on the context of the icon's use. Windows also provides a collection of APIs for accessing and displaying icons and icon images.

The code I introduce will help you extract icons from executable modules (EXE, DLL) without the need to know the Windows APIs that are used in this situation.

The code will also help you in extracting specific icon images from an icon file, and will help you in extracting the icon image that best fits a supplied icon size.

Background

If you want to understand what is going on in this code, you should know how to call APIs from C# code. You also need to know the icon format, about which you will find here: MSDN.

Using the code

First, you need to add a reference to TAFactory.IconPack.dll, or add the project named IconPack to your project.

Add the following statement to your code:

using TAFactory.IconPack;

Use the IconHelper class to obtain the icons as follows:

//Get the open folder icon from shell32.dll.
Icon openFolderIcon = IconHelper.ExtractIcon(@"%SystemRoot%\system32\shell32.dll", 4);
//Get all icons contained in shell32.dll.
List<icon> shellIcons = IconHelper.ExtractAllIcons(@"%SystemRoot%\system32\shell32.dll");
//Split the openFolderIcon into its icon images.
List<icon> openFolderSet = IconHelper.SplitGroupIcon(openFolderIcon);
//Get the small open folder icon.
Icon smallFolder = IconHelper.GetBestFitIcon(openFolderIcon, 
                              SystemInformation.SmallIconSize);
//Get large icon of c drive. 
Icon largeCDriveIcon = IconHelper.GetAssociatedLargeIcon(@"C:\");
//Get small icon of c drive. 
Icon smallCDriveIcon = IconHelper.GetAssociatedSmallIcon(@"C:\");
//Merge icon images in a single icon.
Icon cDriveIcon = IconHelper.Merge(smallCDriveIcon, largeCDriveIcon);
//Save the icon to a file.
FileStream fs = File.Create(@"c:\CDrive.ico");
cDriveIcon.Save(fs);
fs.Close();

References

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Abdallah Gomah
Software Developer (Senior) NCEEE
Egypt Egypt
Member
Abdallah Gomah
Bachelor of Computers and Information in Computer Science, year 2003 - Cairo University (Egypt)
 
- Working as a developer since I graduated from the faculty.
- Like coding in C++ aloso like to code in assembly.
- Have a great experience in coding with .NET (C#/VB), but I prefer the C# notation.
- Had written a lot of applications Desktop and Web.
 
I love playing football as much as I love the programming.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionSuper Code ButmemberMember 985556517 May '13 - 6:29 
GeneralThanks.memberFatih Nehir30 Nov '12 - 3:07 
QuestionWhere does TAFactory.IconPack.dll come frommemberJrad26 Oct '12 - 11:38 
AnswerRe: Where does TAFactory.IconPack.dll come frommemberAbdallah Gomah26 Oct '12 - 10:42 
QuestionLittle help needed pleasememberMember 89109501 May '12 - 5:00 
GeneralMy vote of 5memberMario Majcica19 May '11 - 22:47 
GeneralMy vote of 5memberAlex Essilfie30 Dec '10 - 22:59 
GeneralMy vote of 5memberplayhere23 Aug '10 - 23:24 
General.Net 2.0 equivalent of icon extractionmemberoguzhanFilizlibay()29 Mar '10 - 3:22 
GeneralRe: .Net 2.0 equivalent of icon extractionmemberplayhere23 Aug '10 - 21:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 17 Jan 2009
Article Copyright 2009 by Abdallah Gomah
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid