| Windows with Delphi Windows API (94) Windows Filesystem (41) Windows Forms (69) Windows Graphics (38)
|
How many colors can the graphic card display?
You can use WIN API function GetDeviceCaps() to calculate the number of colors supported by the current video mode*). This function will return the number of maximum simultaneous colors current video device can handle. The var parameter will be set to the the number of bits per pixel or 0 in case of an error.
*) Look at the ChangeDisplaySettings routine (in the Win32 API help) to change the mode at runtime
Comments:
|