Tagged Questions
The cbitmap tag has no wiki summary.
2
votes
2answers
245 views
Can't Display Bitmap of Higher Resolution than CDC area
Hi there dear gurus and expert coders.
i am not gonna start with im a newbie and don't know much about image programming but unfortunately those are the facts :(
I am trying to display an image from ...
1
vote
1answer
510 views
How do you scale a CBitmap object?
I've loaded a CBitmap object from a resource ID, and I'm now wanting to scale it to 50% its size in each dimension. How might I go about this?
1
vote
3answers
1k views
how to add bitmap image to buttons in MFC?
I am Trying to add an image to an existing button..I have done that to an extent, the problem is I can add an ownerdrawn Image but am not able to add the extact image that I want.. for the example see ...
0
votes
1answer
195 views
Create a CBitmap from Resources ID
I need to fill a CImageList with a number of bitmaps which are stored in separate bmp files (rather than as a single bmp with numerous parts). I assume I need to create a CBitmap so I can call the Add ...
0
votes
1answer
139 views
Does MemoryDC occupied memory or the memory on video card?
I am using the following code to create a compatible DC:
m_pDC=new CDC();
VERIFY(m_pDC->CreateCompatibleDC(sampleDC);
CBitmap bitmap;
if (bitmap.CreateCompatibleBitmap(sampleDC, rect.Width(), ...