Tagged Questions
The drawdib tag has no wiki summary.
1
vote
6answers
1k views
how to Improve DrawDIB's quality?
I am coding in c++, gdi
I use stretchDIBits to draw Images to dc.
::SetStretchBltMode(hDC, HALFTONE);
::StretchDIBits(
hDC,
des.left,des.top,des.right - des.left,des.bottom - ...
0
votes
0answers
48 views
DrawDibDraw bitmap rendering issue when StretchDIBits works
I have a multi media application. I use DrawDib Functions in the following order, which I am not sure about. The call succeeds, there is no GDI_ERROR. But I don't see any bitmap in the window area. ...
0
votes
1answer
380 views
DrawDib StretchDIBits which one is faster?
I've never used DrawDib APIs,
My Application's UI rendering is based on stretchDIBits.
Because there are really lots of large images to draw , the stretchDIBits's (HAFTONE is used to get better render ...