How can i display an image in larger dimensions than its original
dimensions.
Image is to be displayed in a picture control .
E.G. a image of original dimension 320 X 240 is to be displayed in 800
X 600
i have tried it with
CPaintDC(this);
dc.StretchBlt(left, top, 800, 600, &m_dcMem, 0, 0,320,240, SRCCOPY);
but it get flooded on dialog box ?
is there any solution.
Plz reply quickly...