I create an image
Pic := TImage.Create(self) etc
then I draw a something on it
Later I want to resize it and draw something else on it.
I resize by writing
Pic.height := new height;
Pic.width := newwidth;
But when I draw on it only the original size of the image is drawn on, - the canvas apparently doesn't grow. So the only way I can get what I want is to delete the image and create a new one.
Can anyone tell me what I should do?