Click here to Skip to main content
15,886,724 members
Articles / Desktop Programming / MFC
Article

CreateGrayscaleIcon which supports 24 and 32 bpp icons

Rate me:
Please Sign up or sign in to vote.
3.72/5 (20 votes)
3 May 2007CPOL1 min read 41.8K   1.3K   24   4
A c++ function which uses GDI to create a channel based version of an icon. Using all the channels you can create a gray scale one

Screenshot - shot.gif

Introduction

While I was working on the update for my Hyperlink control I faced with the problem of automatically creating a grayscale icon when the control is in disabled state. I searched on CodeProject and found the CreateGrayscaleIcon by Davide Calabro but I noticed that it doesn't support 32bpp icons. In addition, it s resource usage was a little too heavy in my opinion. So I decided to write one on my own and here's the result.

Curiously enough, I found that simply changing the palette filling loop a bit could create any channel scale icon, so I've re-written the function and overloaded it to support a custom palette parameter which lets you to make custom replacement. Look at the demo project to understand what I'm talking about. If you want to use this function in C programs, simply change the overloaded version with a default parameter one.

Using the code

The function is very simple to use. Just call CreateGrayscaleIcon passing your HICON and the function will return the new gray scale icon.

HICON myIcon = (HICON)::LoadImage(
        AfxFindResourceHandle(MAKEINTRESOURCE(ICON_ID), RT_GROUP_ICON),
        MAKEINTRESOURCE(ICON_ID), IMAGE_ICON, 0, 0, 0);

HICON grayIcon = CreateGrayscaleIcon(myIcon);

If you want to use the overloaded version simply create a palette and pass it to the function, like this:

C++
COLORREF palette[256];

for(int i = 0; i < 256; i++)
{
    palette[i] = RGB(255-i, 255-i, 255-i);
}

HICON myIcon = (HICON)::LoadImage(
        AfxFindResourceHandle(MAKEINTRESOURCE(ICON_ID), RT_GROUP_ICON),
        MAKEINTRESOURCE(ICON_ID), IMAGE_ICON, 0, 0, 0);

HICON grayIcon = CreateGrayscaleIcon(myIcon,palette);

This will create a grayscale icon, like the default not overloaded CreateGrayscaleIcon.

Notes

I found that icon on my hard drive but sincerely don't know where does it come from, so if it is copyrighted material and the owner of the rights doesn't want to let me use it, just let me know and I will replace it with something else.

Conclusion

So, that's all, I think. If you have problems or questions don't hesitate to post.

License

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


Written By
Synved Ltd.
Ireland Ireland

Comments and Discussions

 
QuestionExcellent! for menus Pin
federki31-Dec-20 6:51
federki31-Dec-20 6:51 
Generalanother bug Pin
Yaroslav Lobachevski12-Nov-07 7:48
Yaroslav Lobachevski12-Nov-07 7:48 
GeneralRe: another bug Pin
Elia Sarti12-Nov-07 18:00
Elia Sarti12-Nov-07 18:00 
GeneralBug Pin
Yaroslav Lobachevski10-Nov-07 4:58
Yaroslav Lobachevski10-Nov-07 4:58 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.