Q:  How can I erase the picture on image1.canvas?

A:

If you want to eliminate the bitmap then try image1.picture := nil;

If not, then try this:

with image1.picture.bitmap.canvas do FillRect(ClipRect);

This will fill the canvas with the current brush color.