Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
1k views

StretchDIBits seems slow, Is there any API faster?

I want to draw a dib on to a HDC, the same size. I am using : des and src are of the same size. ::StretchDIBits(hdc, des.left,des.top,des.right - des.left,des.bottom - des.top, ...
1
vote
2answers
1k views

How would I draw a PNG image using LoadImage and StretchDIBits?

(This is related to the question on How would I load a PNG image using Win32/GDI (no GDI+ if possible)?.) Hi all, I was wondering, given that you have a PNG resource embedded in a binary file with ...
1
vote
1answer
284 views

StretchDIBits failed, sometimes it draw nothing,

I am using gdi c++, StretchDIBits function sometimes failed if I draw large Images such as 7000*5000. It draw nothing. GetLastError() says no enough system resource. Can anyone explain why ...
1
vote
2answers
1k views

Drawing On GDI+ Graphics Object a Bitmap using StretchDIBits for Scaling

I am drawing bitmap images on graphics object using DrawImage method But the Images are in large number so it is taking too much time for Drawing. I have read in this forum that using StretchDIBits ...
1
vote
1answer
326 views

how to set GDI HDC's drawable region?

I want to draw a HBITMAP onto HDC, I used StretchDIBits. It works fine. ::StretchDIBits. however, I only want a window to watch the drawing result, beside the window, I wish the stretchDIBits do ...
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
117 views

Repainting image after going to full screen and back in C++/CLI

I'm building application, which paints raw bitmap images on label's hdc using StrechDIBits. ptr = g->GetHdc(); dc = (HDC)ptr.ToInt32 (); SetStretchBltMode (dc, COLORONCOLOR); StretchDIBits (dc, 0, ...
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 ...
0
votes
1answer
180 views

Image shaking when StretchDIBits partially

I am using C++ GDI, StretchDIBits to draw images on DC. Because the original Image is large, and high quality is needed. I use HAFTONE mode, to draw whole image on DC(zoom the image) seems time ...
0
votes
1answer
389 views

How to imitate shadow around the thumbnails by StretchDIBits?

I am now writing a image viewer, It is used for view thumbnails. As it is ugly, I decide to draw shadow round thumbnail. There is background color. I am using StretchDIBits to draw a shadow image at ...