Registriert seit: 25. Apr 2003
Ort: Graz
2.234 Beiträge
Delphi 2006 Architect
|
Re: Teile eines images kopieren und in anderes image einfüge
23. Jun 2004, 22:30
ok dann halt der code ...
Delphi-Quellcode:
var i,j:integer;
Bild,teilBild:TBitmap;
Bild:=TBitmapo.create();
bild.loadfromfile('c:\....');
For i:=0 to AnzahlX do
For j:=0 to ANzahlY do
begin
teilBild:=TBitmap.create();
teilbild.copyrect(round(bild.width/AnzahlX*i),round(bild.height/AnzahlY*j),
round(bild.width/AnzahlX*(i+1)),round(bild.height/AnzahlY*(j+1),
bild);
teilbild.savetofile(....);
teilbild.free;
end;
Nico Müller
|
|
Zitat
|