Subj : why does Image1->Picture->Bitmap->Width and Height not following the Image1->Width and Height? To : borland.public.cpp.borlandcpp From : bryan wong Date : Wed Jun 22 2005 05:42 pm Image1 is TImage, First I stretchdraw 300*300 bitmap to Image1, Image1->Canvas->StretchDraw(Rec(0,0,300,300), BMPImage1->Picture->Bitmap); then I stretchdraw 600*600 bitmap to Image1, Image1->Canvas->StretchDraw(Rec(0,0,600,600), BMPImage2->Picture->Bitmap); I found the Image1->Picture->Bitmap->Width and Height are still 300, that make BMPImage2 only draw half pic on the image1. why does Image1->Picture->Bitmap->Width and Height not following the Image1->Width and Height? .