+2  A: 

Maybe you have to also adjust Image1.Picture.Width/Height or Image1.Picture.Bitmap.Width/Height.

Ulrich Gerhardt
+3  A: 

Add an OnResize-event to your form:

procedure TForm1.FormResize(Sender: TObject);
begin
  Image1.Picture.Bitmap.Width := Image1.Width;
  Image1.Picture.Bitmap.Height := Image1.Height;
end;

Also, if you are using the component to draw on, rather than displaying images from file etc, consider using the TPaintBox rather than TImage.

Svein Bringsli
Thanks, that did the trick. Re. the TPaintBox suggestion - in the real app, I have to do several other things with it beside drawing on, so TImage suits me better.
PhiS