系统启动时,VERTRES和HORZRES取决于缩放设置

时间:2019-01-22 21:11:08

标签: winapi windows-10 dpi-aware

我最近一直在使用WINAPI来检索缩放设置和屏幕分辨率,并且遇到了这种奇怪的现象。

我有一个小型C ++程序(可在下面列出),该程序检索VERTRES,HORZRES,DESKTOPVERTRES和DESKTOPHORZRES的值。我的程序还将DPI感知模式设置为1(系统级感知)。我注意到,VERTRES,HORZRES报告的值取决于系统启动时使用的系统缩放因子。

因此,在我的笔记本电脑上,我已将系统缩放系数配置为150%,分辨率为1920x1080。这就是启动时的配置。当我检索HORZRES和DESKTOPHORZRES时,两个值都报告为1920。

如果将缩放比例设置更改为100%并且不重新启动计算机,则下次我检索这些值时,它们将分别报告为2880(对于HORZRES)和1920(对于DESKTOPHORZRES)。

在将缩放比例设置设置为100%的计算机重新启动后,两个值都再次报告为1920。

如果我再次将缩放比例更改为150%,则值将报告为1280(HORZRES)和1920(DESKTOPHORZRES)。

仅当我将DPI感知设置为1(如果将其设置为0(“不感知”)或2(“每屏感知”)值时,观察到的行为始终报告为1280(HORZRES)和1920) (DESKTOPHORZRES),无论启动时如何配置缩放比例。

我想知道为什么HORZRES(或VERTRES)报告的值取决于系统启动时使用的缩放因子?这是预期的行为吗?

如果在某处已经描述了上面的内容,我将不胜感激。

#include "stdafx.h"
#include <iostream>
#include <vector>
#include <cerrno>
#include <string>
#include <sstream>
#include <math.h>
#include <Windows.h>
#include <shellscalingapi.h>
#include <winuser.h>

class Rectangular
{
public:
    Rectangular(int height, int width) : height(height), width(width) {};
    const int height;
    const int width;
};

class MonitorInfo
{
public:
    MonitorInfo(std::string device_name, Rectangular logical_resolution, Rectangular physical_resolution, Rectangular physical_size_mm) :
        device_name(device_name), logical_resolution(logical_resolution), physical_resolution(physical_resolution),
        physical_size_mm(physical_size_mm), scaling(static_cast<int>(std::round(100.0*(float)physical_resolution.height / (float)logical_resolution.height))) {};

    void print_to_stdout() const;
    const std::string device_name;
    const Rectangular logical_resolution;
    const Rectangular physical_resolution;
    const Rectangular physical_size_mm;
    const int scaling;
};


class MonitorsInformation
{
public:
    MonitorsInformation();
    const std::vector<MonitorInfo>& get_monitors_info() const { return monitors; }
    std::string get_last_error_string() const { return last_error; }
    Rectangular get_monitors_rectangular() const;
private:
    RECT rectangular_combined;
    std::vector<MonitorInfo> monitors;
    std::string  last_error;
    static BOOL CALLBACK MonitorEnum(HMONITOR hMon, HDC hdc, LPRECT lprcMonitor, LPARAM pData);
};

void MonitorInfo::print_to_stdout() const
{
    std::cout << "\nDevice: " << device_name << "\nLogical Screen resolution: " << logical_resolution.width << "x" << logical_resolution.height;
    std::cout << "\nPhysical Screen resolution: " << physical_resolution.width << "x" << physical_resolution.height;
    std::cout << "\nDPI ratio: " << scaling;
    std::cout << "\nPhysical Size(mm): " << physical_size_mm.width << "x" << physical_size_mm.height << "\n";
}


MonitorsInformation::MonitorsInformation() : rectangular_combined(RECT()), last_error(std::string()), monitors(std::vector<MonitorInfo>())
{
    EnumDisplayMonitors(0, 0, MonitorEnum, (LPARAM)this);
}

BOOL CALLBACK MonitorsInformation::MonitorEnum(HMONITOR hMon, HDC hdc, LPRECT lprcMonitor, LPARAM pData)
{
    MonitorsInformation* pThis = reinterpret_cast<MonitorsInformation*>(pData);

    MONITORINFOEXA monitor_info;
    monitor_info.cbSize = sizeof(MONITORINFOEXA);

    if (!GetMonitorInfoA(hMon, &monitor_info))
    {
        pThis->last_error = "GetMonitorInfoA failed with error: " + errno;
        return FALSE;
    }

    UnionRect(&pThis->rectangular_combined, &pThis->rectangular_combined, lprcMonitor);

    HDC device_context = CreateDCA(NULL, monitor_info.szDevice, NULL, NULL);

    int LogicalScreenHeight = GetDeviceCaps(device_context, VERTRES);
    int LogicalScreenWidth = GetDeviceCaps(device_context, HORZRES);
    int PhysicalScreenHeight = GetDeviceCaps(device_context, DESKTOPVERTRES);
    int PhysicalScreenWidth = GetDeviceCaps(device_context, DESKTOPHORZRES);

    pThis->monitors.push_back(
        MonitorInfo(
            std::string(monitor_info.szDevice),
            Rectangular(
                LogicalScreenHeight,
                LogicalScreenWidth),
            Rectangular(
                PhysicalScreenHeight,
                PhysicalScreenWidth),
            Rectangular(
                GetDeviceCaps(device_context, VERTSIZE),
                GetDeviceCaps(device_context, HORZSIZE))));

    return TRUE;
}

Rectangular MonitorsInformation::get_monitors_rectangular() const
{
    return Rectangular(
        std::abs(rectangular_combined.top) + std::abs(rectangular_combined.bottom),
        std::abs(rectangular_combined.left) + std::abs(rectangular_combined.right));
}


int main()
{
    SetProcessDPIAware();

    for (;;)
    {
        MonitorsInformation MonitorsInfo;
        char exit_char = 'N';
        std::cout << "You have " << MonitorsInfo.get_monitors_info().size() << " monitors connected.\n";
        printf("Screen rectangular. %d x %d\n",
            MonitorsInfo.get_monitors_rectangular().width, MonitorsInfo.get_monitors_rectangular().height);

        for (auto &monitor : MonitorsInfo.get_monitors_info())
        {
            monitor.print_to_stdout();
        }
        std::cout << "Would you like to repeat? [Y]/[N]\n";
        std::cin >> exit_char;
        if (exit_char == 'N' || exit_char == 'n')
        {
            break;
        }
    }

    return 0;
}

1 个答案:

答案 0 :(得分:1)

@AlexanderZinovyev感谢您的进一步解释,我可以将比例因子保持在150%并重新启动计算机,以重现您的问题。

在查看GetDeviceCaps API文档之后,我发现了以下注释:

  

注意GetDeviceCaps报告显示驱动程序提供的信息。 如果   显示驱动程序拒绝报告任何信息GetDeviceCaps   根据固定的计算来计算信息。如果显示驱动程序   报告无效信息,GetDeviceCaps返回无效信息。 如果   显示驱动程序拒绝报告信息,GetDeviceCaps可能   计算错误的信息,因为它假定固定DPI(96 DPI)   或固定大小(取决于显示驱动程序所做的信息以及   没有提供)。 很遗憾,已实现了显示驱动程序   Windows显示驱动程序模型(WDDM)(在Windows中引入)   Vista)导致GDI无法获取信息,因此GetDeviceCaps必须始终   计算信息。

因此,看来GetDeviceCaps API的返回值可能无法反映设备的实际价值。