Hi,
Also ich müsste wissen wie ich herausfinden kann wie eine Farbe "aussieht"... also ob eine Farbe rot/grün/blau aussieht hab ich mit 3_of_8's Hilfe hinbekommen:
Delphi-Quellcode:
function IsRed(Col: TColor): Boolean;
begin
Result := (GetRValue(Col) > 2*GetGValue(Col)) and (GetRValue(Col) > 2*GetBValue(Col));
end;
Aber wie mache ich das z.B mit Gelb?
Gruß
Neutral General
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."