it's a misleading description of what happens in the end.
you call DRAW, which does not resize the image but the docs leads you to believe the image is going to be resized because it's calling the StretchDraw.
In reality, the image does not get resized at all, it just gets clipped off.
in any case, if you are on windows and want to natively use StretchDraw for a faster experience for a real stretch of an image.
SetStretchBltMode(hDC,HALFTONE);
StretchBlt(hDC,630,500,200,200, hDC, 0,0,400,400, SRCCOPY);