hi you. thanks for your help.this is functions i used: sOldBltMode = SetStretchBltMode( hDC, STRETCH_DELETESCANS ); // Create the palette. hPal = CreateDibPalette(); if ( hPal ) { hOldPal = SelectPalette( hDC, hPal, FALSE ); if ( hOldPal ) RealizePalette(hDC); } StretchDibBlt( hDC, r.left, r.top, r.Width(), r.Height(), hMem, Source.left, Source.top, Source.Width(), Source.Height(), SRCCOPY ); if ( hPal && hOldPal ) SelectPalette( hDC, hOldPal, FALSE ); if ( hPal ) DeleteObject( hPal ); // Reset the stretch mode. SetStretchBltMode( hDC, sOldBltMode ); ===> first.I show image 10x10inch from file image bitmap. after,i double lick into it, and i will show properties. i choice size 1x1inch. size 10x10inch not yet clear. have i must clear image 10x10inch ? wish your help
nothing