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
<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