D
dain
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.Button1Click(Sender: TObject);
var
Bitmap, Bitmap1: TBitmap;
MyRect, MyOther: TRect;
begin
MyRect := Rect(20,20,100,100);
MyOther := Rect(20,20,100,200);
Bitmap := TBitmap.Create;
Bitmap1 := TBitmap.Create;
Bitmap.LoadFromFile('D:/kjjwd/face/splash.bmp');
Bitmap1.Canvas.CopyRect(MyOther,Bitmap.Canvas,MyRect);
Bitmap1.SaveToFile('c:/windows/desktop/aa.bmp');
Bitmap.Free;
Bitmap1.Free;
end;
var
Bitmap, Bitmap1: TBitmap;
MyRect, MyOther: TRect;
begin
MyRect := Rect(20,20,100,100);
MyOther := Rect(20,20,100,200);
Bitmap := TBitmap.Create;
Bitmap1 := TBitmap.Create;
Bitmap.LoadFromFile('D:/kjjwd/face/splash.bmp');
Bitmap1.Canvas.CopyRect(MyOther,Bitmap.Canvas,MyRect);
Bitmap1.SaveToFile('c:/windows/desktop/aa.bmp');
Bitmap.Free;
Bitmap1.Free;
end;