Reputation: 6333
I am using visual c++ 6.0 and need to capture the image on the screen to memory. How do I do this? thx
Upvotes: 0
Views: 518
Reputation: 308530
GetDC(NULL)
CreateCompatibleDC
.GetBitmapBits
to copy the bitmap into memory.Upvotes: 4