placing the device independent bitmap into the clipboard
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
can someone please tell me how i can place a device independent bitmap into the clipboard without converting it to a device dependent bitmap?
There is a registered clipboard format
CF_DIB
, where the data is expected to be aBITMAPINFO
struct and bitmap bits.GetDIBits
will get this info from the DIB. -
There is a registered clipboard format
CF_DIB
, where the data is expected to be aBITMAPINFO
struct and bitmap bits.GetDIBits
will get this info from the DIB.