Registriert seit: 13. Feb 2003
Ort: Pdm
67 Beiträge
|
Re: PNG anzeigen lassen
20. Feb 2004, 16:39
Hier die Lösung meines Problems
Delphi-Quellcode:
var
png: TPngObject;
farbe:TColor;
begin
png := TPngObject.Create;
try
farbe:=png.pixels[x,y]; //Gibt mir die Farbe des Pixels
png.pixels[x,y]:=clBlack; //Setzt die Farbe des Pixel auf schwarz
finally
png.Free;
end;
end;
The capacity to learn is a gift;
The ability to learn is a skill;
The willingness to learn is a choice.
-REBEC OF GINAZ
|