procedure TForm1.Button1Click(Sender: TObject);
var SrcBmp, DestBmp: TBitmap; begin SrcBmp := TBitmap.Create; SrcBmp.LoadFromFile('C:\Source.bmp'); DestBmp := TBitmap.Create; DestBmp.Width := 100; DestBmp.Height := 100; DestBmp.Canvas.CopyRect(Rect(0, 0, 100, 100), SrcBmp.Canvas, Rect(50, 50, 150, 150)); DestBmp.SaveToFile('C:\Dest.bmp'); SrcBmp.Free; DestBmp.Free; end;