var
MyBitmap: TBitmap;
Begin
MyBitmap:=TBitmap.Create;
MyBitmap := image1.Picture.Bitmap;
//this creates an image from image1
Form1.Brush.Bitmap:=MyBitmap;
//this creates an image too, but the image is new, it is not transparent with the form1 image
Memo1.Brush.Bitmap:=MyBitmap;
//this does not create an image, transparent with the form1
Button1.Brush.Bitmap:=MyBitmap;
|