Device Context
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
I'm new to programming so I don't know much. How do I get a pointer to an in-memory device context if I want to move that area to another place, I don't mean bitblt and bitbltting to another dc but a portion of memory which I can operate on? Thanks
-
I'm new to programming so I don't know much. How do I get a pointer to an in-memory device context if I want to move that area to another place, I don't mean bitblt and bitbltting to another dc but a portion of memory which I can operate on? Thanks
-
you will have to get the dc from which you can get a bitmap and from the bitmap the LPBYTES ,if you want to do sme fancy work do it with these bytes then convert them in to bitmap and use them
Can you provide a sample code?