(Moderator)
Registriert seit: 23. Sep 2003
Ort: Bockwen
12.235 Beiträge
Delphi 2006 Professional
|
Re: teil eines bitmaps in ein anderes kopieren
22. Jul 2008, 20:27
ansonsten sollte es auch so gehen:
Delphi-Quellcode:
var
lBitmap: TBitmap;
begin
lBitmap := TBitmap.Create();
try
lBitmap.Handle := BitmapHandle;
try
//Now you can work with lBitmap.Canvas.Handle
finally
lBitmap.Handle := 0;
end;
finally
lBitmap.Free;
end;
Jens Mit Source ist es wie mit Kunst - Hauptsache der Künstler versteht's
|