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

CreateGrayscaleIcon which supports 24 and 32 bpp icons

By , 3 May 2007
 

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Elia Sarti
Synved Ltd.
Ireland Ireland
Member




Synved : Logos / Designs / Websites / Development / FREE Quote / www.synved.com

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   
Generalanother bugmemberpoxui12 Nov '07 - 7:48 
GeneralRe: another bugmemberGladstone12 Nov '07 - 18:00 
GeneralBugmemberpoxui10 Nov '07 - 4:58 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 3 May 2007
Article Copyright 2007 by Elia Sarti
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid