Hi
wie kann ich image.picture.Bitmap auf eine Bitmap,
die ich at run time erstelle kopieren ?
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var
bmp:TBitmap;
RR : TRect;
begin
bmp:=TBitmap.Create;
bmp.width:=400;
bmp.Height:=400;
bmp.PixelFormat := pf24bit;
// nun möchte ich eine kleine Bitmap (100x100) drauf malen
bmp.free;
end;