Click here to Skip to main content
15,886,724 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Can CToolBar load 24 bit Bitmaps ??

I observed it works fine with 4 and 8 bit bitmaps.

If it is possible to make it work with 24 or 32 bit bitmaps then please let me know..

Thanks in advance.
- Prasad.
Posted

i guess it will work. Use the SetBitMap() function. here is an example

http://www.codeguru.com/Cpp/controls/toolbar/miscellaneous/article.php/c2521[^]
 
Share this answer
 
This is the same: 8-bit bitmap and 24-bit bitmap. When they say "8-bit" bitmap, it means 8 bits per color component per pixel. So "8-bit" bitmaps takes 3*8 = 24bits for RGB pixel and 4*8 = 32bits per pixel for ARBG, where one more component ("A") is opacity. Also, there are different bitmaps format of the same pixel precision: order of components can be different.

Please understand what you really need before asking a question.

—SA
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900