Registriert seit: 9. Jul 2005
Ort: Hohenaltheim
1.001 Beiträge
Delphi 2005 Personal
|
Re: bitmap.pixelformat ausgeben
22. Dez 2005, 20:03
schreib dir doch ne Funktion:
Delphi-Quellcode:
function pixelformattostring(pf:tpixelformat);
begin
case pf of
pf1bit: result:='1 Bit';
pf8bit: result:='8 Bit';
else
result:='Pixelformat nicht gefunden';
end;
end;
nicht getestet
Michael Enßlin Ich, der ich weiß, mir einzubilden, dass ich weiß, nichts zu wissen, weiß, dass ich nichts weiß.
Sokrates
|