Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

CreateGrayscaleIcon which supports 24 and 32 bpp icons

0.00/5 (No votes)
3 May 2007 1  
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:

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here