Delphi-Quellcode:
tempbmp:=tbitmap.Create;
tempbmp.Assign(bmp);
Man braucht "bmp" nicht auf "tempbmp" kopieren, da "tempbmp" sowieso überschrieben wird.
Delphi-Quellcode:
tempbmp:=tbitmap.Create;
tempbmp.Width := bmp.Width;
tempbmp.Height:= bmp.Height;
tempbmp.PxelFormat := bmp.PixelFormat;