StretchBlt 
This function copies a bitmap from a source rectangle into a destination rectangle, stretching or compressing the bitmap to fit the dimensions of the destination rectangle, if necessary. Windows stretches or compresses the bitmap according to the stretching mode set in the destination device context.BOOL StretchBlt(
HDC hdcDest, 
int nXOriginDest, 
int nYOriginDest, 
int nWidthDest, 
int nHeightDest, 
HDC hdcSrc, 
int nXOriginSrc, 
int nYOriginSrc, 
int nWidthSrc, 
int nHeightSrc, 
DWORD dwRop );