Get screen colour depth

function GetColorDepth:DWord;
var
   h:hDC;
begin
     Result:=0;
     try
        h:=GetDC(0);
        Result:=1 shl (GetDeviceCaps(h,PLANES)*
                GetDeviceCaps(h,BITSPIXEL));
     finally
            ReleaseDC(0,h);
     end;
end;

 

1 Oct 2001

Copyright 2001-2005 (C) ykwong.com All rights reserved.