Hey,
I have a problem with getting a bitmap (HBITMAP) from Device Context using
Graphics object.
Let's say I draw something :
CDC ndc;
HBITMAP hb;
ndc.CreateCompa tibleDC(dc);
Graphics g(ndc->m_hDC);
g.Draw(somethin g..); //drawing on g is here
hb= ???
And how to get a bitmap then? Or maybe I did something wrong..
AD
I have a problem with getting a bitmap (HBITMAP) from Device Context using
Graphics object.
Let's say I draw something :
CDC ndc;
HBITMAP hb;
ndc.CreateCompa tibleDC(dc);
Graphics g(ndc->m_hDC);
g.Draw(somethin g..); //drawing on g is here
hb= ???
And how to get a bitmap then? Or maybe I did something wrong..
AD
Comment