|
Guest
|
I have an image in memory Device Context and want to display in the
browser window. Any Help?
hImage ----- handle to image in memory
HDC hDC = GetDC(hWnd); //hWnd is the browser handle
HDC hImageDC = CreateCompatibleDC(hDC);
SelectObject(hImageDC,hImage) //copy image to hImageDC
BitBlt(hDC,100,100,,96,96,hImageDC,0,0,SRCCOPY);
it doesn't work will anyone please post me the correct solution
thanks
j |
|
|