Einzelnen Beitrag anzeigen

thomas2009
(Gast)

n/a Beiträge
 
#1

Bitmap auf Bitmap kopieren

  Alt 15. Apr 2011, 14:25
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;
  Mit Zitat antworten Zitat