Click here to Skip to main content
15,880,956 members
Articles / Desktop Programming / MFC
Article

CreateGrayscaleIcon

Rate me:
Please Sign up or sign in to vote.
4.28/5 (8 votes)
20 May 2002 354.3K   903   41   24
A Win32 function to create grayscale icons

Sample Image - CreateGrayscaleIcon.png

Abstract

CreateGrayscaleIcon is a Win32 function that creates a grayscale icon starting from a given icon.
The resulting icon will have the same size of the original one. This function is written using only Win32 APIs
to make possible to be used either in MFC and pure Win32 applications.

Function description

Just add in your project a function like the following:

// This function creates a grayscale icon starting from a given icon.
// The resulting icon will have the same size of the original one.
//
// Parameters:
//      [IN]    hIcon
//              Handle to the original icon.
//
// Return value:
//      If the function succeeds, the return value is the handle to 
//      the newly created grayscale icon.
//      If the function fails, the return value is NULL.
//
HICON CreateGrayscaleIcon(HICON hIcon)
{
    HICON       hGrayIcon = NULL;
    HDC         hMainDC = NULL, hMemDC1 = NULL, hMemDC2 = NULL;
    BITMAP      bmp;
    HBITMAP     hOldBmp1 = NULL, hOldBmp2 = NULL;
    ICONINFO    csII, csGrayII;
    BOOL        bRetValue = FALSE;

    bRetValue = ::GetIconInfo(hIcon, &csII);
    if (bRetValue == FALSE) return NULL;

    hMainDC = ::GetDC(NULL);
    hMemDC1 = ::CreateCompatibleDC(hMainDC);
    hMemDC2 = ::CreateCompatibleDC(hMainDC);
    if (hMainDC == NULL || hMemDC1 == NULL || hMemDC2 == NULL) return NULL;
  
    if (::GetObject(csII.hbmColor, sizeof(BITMAP), &bmp))
    {
        DWORD   dwWidth = csII.xHotspot*2;
        DWORD   dwHeight = csII.yHotspot*2;

        csGrayII.hbmColor = ::CreateBitmap(dwWidth, dwHeight, bmp.bmPlanes, 
                                           bmp.bmBitsPixel, NULL);
        if (csGrayII.hbmColor)
        {
            hOldBmp1 = (HBITMAP)::SelectObject(hMemDC1, csII.hbmColor);
            hOldBmp2 = (HBITMAP)::SelectObject(hMemDC2, csGrayII.hbmColor);

            //::BitBlt(hMemDC2, 0, 0, dwWidth, dwHeight, hMemDC1, 0, 0, 
            //         SRCCOPY);

            DWORD    dwLoopY = 0, dwLoopX = 0;
            COLORREF crPixel = 0;
            BYTE     byNewPixel = 0;

            for (dwLoopY = 0; dwLoopY < dwHeight; dwLoopY++)
            {
                for (dwLoopX = 0; dwLoopX < dwWidth; dwLoopX++)
                {
                    crPixel = ::GetPixel(hMemDC1, dwLoopX, dwLoopY);

                    byNewPixel = (BYTE)((GetRValue(crPixel) * 0.299) + 
                                        (GetGValue(crPixel) * 0.587) + 
                                        (GetBValue(crPixel) * 0.114));
                    if (crPixel) ::SetPixel(hMemDC2, dwLoopX, dwLoopY, 
                                            RGB(byNewPixel, byNewPixel, 
                                            byNewPixel));
                } // for
            } // for

            ::SelectObject(hMemDC1, hOldBmp1);
            ::SelectObject(hMemDC2, hOldBmp2);

            csGrayII.hbmMask = csII.hbmMask;

            csGrayII.fIcon = TRUE;
            hGrayIcon = ::CreateIconIndirect(&csGrayII);
        } // if

        ::DeleteObject(csGrayII.hbmColor);
        //::DeleteObject(csGrayII.hbmMask);
    } // if

    ::DeleteObject(csII.hbmColor);
    ::DeleteObject(csII.hbmMask);
    ::DeleteDC(hMemDC1);
    ::DeleteDC(hMemDC2);
    ::ReleaseDC(NULL, hMainDC);

    return hGrayIcon;
} // End of CreateGrayscaleIcon

History

  • 03/May/2002
    Removed dependancy from m_hWnd
    Removed 1 BitBlt operation
  • 16/April/2002
    First release

Disclaimer

THE SOFTWARE AND THE ACCOMPANYING FILES ARE DISTRIBUTED "AS IS" AND WITHOUT ANY WARRANTIES WHETHER EXPRESSED OR IMPLIED. NO RESPONSIBILITIES FOR POSSIBLE DAMAGES OR EVEN FUNCTIONALITY CAN BE TAKEN. THE USER MUST ASSUME THE ENTIRE RISK OF USING THIS SOFTWARE.

Terms of use

THIS SOFTWARE IS FREE FOR PERSONAL USE OR FREEWARE APPLICATIONS.

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


Written By
Web Developer
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralSmall bugs Pin
tHeWiZaRdOfDoS31-Oct-06 12:45
tHeWiZaRdOfDoS31-Oct-06 12:45 
QuestionFail to use this function Pin
binglan14-Aug-06 21:16
binglan14-Aug-06 21:16 
Generalsmall question... Pin
Max Santos7-Oct-04 6:54
Max Santos7-Oct-04 6:54 
GeneralRe: small question... Pin
Davide Calabro7-Oct-04 21:02
Davide Calabro7-Oct-04 21:02 
GeneralBug Pin
Michael Kaufmann21-Sep-04 2:57
Michael Kaufmann21-Sep-04 2:57 
GeneralIy's just fit me. thanks a lot. Pin
下眩月26-Sep-03 16:45
下眩月26-Sep-03 16:45 
GeneralGood work Pin
22-May-02 20:05
suss22-May-02 20:05 
GeneralVery Usefully Thanks Pin
27-Apr-02 17:31
suss27-Apr-02 17:31 
GeneralSemi Related Question Pin
NormDroid24-Apr-02 22:18
professionalNormDroid24-Apr-02 22:18 
GeneralRe: Semi Related Question Pin
Davide Calabro25-Apr-02 3:49
Davide Calabro25-Apr-02 3:49 
GeneralRe: Semi Related Question Pin
29-Apr-02 21:41
suss29-Apr-02 21:41 
GeneralUseful. Pin
Shog924-Apr-02 9:41
sitebuilderShog924-Apr-02 9:41 
GeneralRe: Useful. Pin
Davide Calabro24-Apr-02 10:36
Davide Calabro24-Apr-02 10:36 
QuestionHey, why you focus only on m_hWnd ? Pin
Davide Calabro24-Apr-02 3:58
Davide Calabro24-Apr-02 3:58 
AnswerRe: Hey, why you focus only on m_hWnd ? Pin
Ed Gadziemski24-Apr-02 8:27
professionalEd Gadziemski24-Apr-02 8:27 
GeneralRe: Hey, why you focus only on m_hWnd ? Pin
Davide Calabro24-Apr-02 10:38
Davide Calabro24-Apr-02 10:38 
AnswerRe: Hey, why you focus only on m_hWnd ? Pin
Ed Gadziemski24-Apr-02 8:33
professionalEd Gadziemski24-Apr-02 8:33 
GeneralRe: Hey, why you focus only on m_hWnd ? Pin
Davide Calabro24-Apr-02 10:38
Davide Calabro24-Apr-02 10:38 
AnswerSorry Davide Pin
Jean-Michel LE FOL24-Apr-02 21:15
Jean-Michel LE FOL24-Apr-02 21:15 
GeneralRe: Sorry Davide Pin
Davide Calabro25-Apr-02 3:46
Davide Calabro25-Apr-02 3:46 
Questionand m_hWnd, is it pure Win32 Application ??? Pin
Jean-Michel LE FOL23-Apr-02 22:33
Jean-Michel LE FOL23-Apr-02 22:33 
AnswerRe: and m_hWnd, is it pure Win32 Application ??? Pin
Robert W.24-Apr-02 0:45
Robert W.24-Apr-02 0:45 
I think you shouldn't use ::GetDesktopWindow - HWND should be passed as argument.
GeneralRe: and m_hWnd, is it pure Win32 Application ??? Pin
Robert W.24-Apr-02 0:47
Robert W.24-Apr-02 0:47 
GeneralRe: and m_hWnd, is it pure Win32 Application ??? Pin
Maximilian Hänel24-Apr-02 1:11
Maximilian Hänel24-Apr-02 1:11 

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.