I have an image in memory defined of an array 32bit ARGB values. I'ld like to get a DC of that to draw on it and afterwards have the result in the same array. The image never gets displayed on the screen by blitting.

Is this possible without copying the image data around?

When I look at the CreateDC() page of msdn, it needs a driver name and a device. But the dc doesn't have to be compatible to any device. Besides, I don't want the result to be different if the display runs in 16 bits or 32 bits color depth. I think I need a DC compatible to my memory layout, not compatible to some device. How can I do that?

Thx Marc

link|improve this question

40% accept rate
This is covered well by <gdiplus.h>. Create the bitmap with the Bitmap(int, int, int, PixelFormat, BYTE*) constructor. Draw with the Graphics object you get from Graphics::FromImage(). – Hans Passant Nov 18 '11 at 11:59
feedback

2 Answers

The CreateDIBSection lets you specify where the memory for the bitmap is stored. It needs to be in a memory-mapped section, however.

link|improve this answer
feedback

You need to create a bitmap and select that bitmap into your DC. The bitmap is created using your memory buffer.

Ue either CreateBitmap (device-dependent) or CreateDIBitmap (device-independent; this is what I'd recommend, especially since you don't want it affected by the display colour depth - that means it should be device-independent.) Both have parameters to point at an existing memory buffer. For CreateDIBitmap, for example, you need to pass the CBM_INIT flag and then pass a pointer to your buffer as the lpbInit parameter. You will also need to pass in a BITMAPINFO structure that describes the format of the bitmap.

CreateBitmap lets you do the same thing, in slightly simpler fashion, but the bitmap (being device-dependent) is not as flexible to use.

(You may want to use CreateCompatibleDC over CreateDC, by the way - depends, but it's often what you're after.)

For more information on using DCs and bitmaps, read something like this article. (I'm not sure from your question how familiar you are with them or general GDI programming.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.