kann man doch auch so machen, oder?
Delphi-Quellcode:
Function BitmapStuff:TBitmap;
begin
result := TBitmap.create;
//
//Add stuff to that Tbitmap
//
end;
..
myBitmap: TBitmap;
...
myBitmap:= BitmapStuff;
myBitmap.free;
Besser ist aber wer eine Instanz erstellt sollte sie auch wieder freigeben.
-> Procedure(bm:TBitmap);
Grüße
Klaus