如何找出运行vista / w7的机器当前的颜色深度?

时间:2009-08-14 08:33:58

标签: c++ windows colors settings

我想检查操作系统的当前颜色深度,以警告用户是否尝试以“错误”颜色深度运行我的应用程序(使用c ++& Qt)。

我想有一个win api调用来获取这些信息,但我找不到任何东西。

4 个答案:

答案 0 :(得分:10)

在Windows上,您可以将GetDeviceCapsBITSPIXEL标记一起使用,但首先需要屏幕DC(GetDC可以获取一个)。

HDC dc = GetDC(NULL);
int bitsPerPixel = GetDeviceCaps(dc, BITSPIXEL);
ReleaseDC(NULL, dc);

答案 1 :(得分:3)

您可以使用WMI进行此操作。

int bitDepth = -1;
hr = CoInitializeEx( NULL, COINIT_MULTITHREADED );
if ( SUCCEEDED( hr ) )
{
    //      hr = CoInitializeSecurity( NULL, -1, NULL, NULL, RPC_C_AUTHN_LEVEL_DEFAULT, RPC_C_IMP_LEVEL_IMPERSONATE, NULL, EOAC_NONE, NULL ); 
    if ( SUCCEEDED( hr ) )
    {
        IWbemLocator*   pLoc = NULL;
        hr = CoCreateInstance( CLSID_WbemLocator, 0, CLSCTX_INPROC_SERVER, IID_IWbemLocator, (void**)&pLoc );
        if ( SUCCEEDED( hr ) )
        {
            IWbemServices*  pSvc = NULL;
            hr = pLoc->ConnectServer( BSTR( L"ROOT\\CIMV2" ),  NULL, NULL, 0, NULL, 0, 0, &pSvc );
            if ( SUCCEEDED( hr ) )
            {
                hr = CoSetProxyBlanket( pSvc, RPC_C_AUTHN_WINNT, RPC_C_AUTHZ_NONE, NULL, RPC_C_AUTHN_LEVEL_CALL, RPC_C_IMP_LEVEL_IMPERSONATE, NULL, EOAC_NONE );
                if ( SUCCEEDED( hr ) )
                {
                    IEnumWbemClassObject* pEnumerator   = NULL;
                    hr  = pSvc->ExecQuery( L"WQL", L"SELECT * FROM Win32_DisplayConfiguration", WBEM_FLAG_FORWARD_ONLY/* | WBEM_FLAG_RETURN_IMMEDIATELY*/, NULL, &pEnumerator );
                    if ( SUCCEEDED( hr ) )
                    {
                        IWbemClassObject* pDisplayObject = NULL;
                        ULONG numReturned = 0;
                        hr = pEnumerator->Next( WBEM_INFINITE, 1, &pDisplayObject, &numReturned );
                        if ( numReturned != 0 )
                        {
                            VARIANT vtProp;
                            pDisplayObject->Get( L"BitsPerPel", 0, &vtProp, 0, 0 );
                            bitDepth = vtProp.uintVal;
                        }
                    }
                    pEnumerator->Release();
                }
            }
            pSvc->Release();

        }
        pLoc->Release();
    }
}
// bitDepth wshould now contain the bitDepth or -1 if it failed for some reason.

答案 2 :(得分:3)

您应该能够使用

获取每像素的值
HDC hdc = GetDC(NULL);
int colour_depth = GetDeviceCaps(hdc,BITSPIXEL);
ReleaseDC(NULL,hdc);

答案 3 :(得分:0)

致电GetDeviceCaps()以检索BITSPIXEL

实际上,它不是“每台机器”的属性,你需要一台HDC。