C Board  

Go Back   C Board > Platform Specific Boards > Windows Programming

Reply
 
LinkBack Thread Tools Display Modes
Old 07-10-2009, 02:35 PM   #1
Registered User
 
Join Date: Jun 2009
Posts: 9
Draw a semi-transparent icon in winapi.

People.
How can I draw a semi transparent icon in winapi with WM_PAINT ?
I mean i'm using functions like
Code:
HICON hIconPic =  LoadImage(_hInstance, MAKEINTRESOURCE(IDI_ICON), IMAGE_ICON, 320, 240, LR_LOADTRANSPARENT);
HDC dcIconPic = CreateCompatibleDC(0);
HICON hSecondIcon = (HICON)SelectObject(dcIconPic, hIconPic);
DrawIconEx(ps.hdc, 0, 0, hIconPic, 0, 0, 0, NULL, DI_NORMAL );
to draw an Icon in winapi window, but the transparency of the icon image is only fully transparent.
Semi-transparency doesn't work ! The semi transparency shown as white color. Can it be implemented somehow easily?
diskdisk is offline   Reply With Quote
Old 07-10-2009, 08:13 PM   #2
Unregistered User
 
Yarin's Avatar
 
Join Date: Jul 2007
Posts: 925
I don't think so. The icon alpha channel isn't natively supported in XP and below. You'll have to make your own function for that, or install a library or graphics engine of some kind.
__________________
GCC 4.4.0, Code::Blocks 8.02, Fedora 11, x64
Yarin is offline   Reply With Quote
Old 07-13-2009, 03:19 AM   #3
Registered User
 
Join Date: Apr 2007
Posts: 127
Quote:
Originally Posted by Yarin View Post
I don't think so. The icon alpha channel isn't natively supported in XP and below. You'll have to make your own function for that, or install a library or graphics engine of some kind.
No, use Win32 Shell apis
Alex31 is offline   Reply With Quote
Old 07-14-2009, 06:33 PM   #4
Registered User
 
Join Date: Jun 2009
Posts: 9
Quote:
Originally Posted by Alex31 View Post
No, use Win32 Shell apis
can you please explain ?
wich of the API can do this ?

thanks
diskdisk is offline   Reply With Quote
Old 07-18-2009, 12:08 PM   #5
Registered User
 
Join Date: Apr 2007
Posts: 127
Several methods (see on Win32 grp, Sh. , C. Controls, etc)
Alex31 is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
icon draw app Gordon Windows Programming 1 04-05-2007 04:24 AM
Which is the better way to draw? g4j31a5 Game Programming 16 01-22-2007 11:56 PM
draw function HELP!!! sunoflight77 C++ Programming 1 05-10-2005 11:28 PM
Transparent Draw Question GodLike Windows Programming 5 05-07-2002 06:56 AM
icon in title bar? Unregistered Windows Programming 3 12-12-2001 06:43 PM


All times are GMT -6. The time now is 05:55 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.0 RC2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22