GetMonitorInfo 和 GetDeviceCaps 中第二台显示器的宽度和高度不正确

Improper width and height for second monitor from GetMonitorInfo and GetDeviceCaps

我正在尝试获取左上角的 x,y 和右下角的 x,y。并计算显示的宽度和高度。

如我的显示设置屏幕截图所示,我的辅助显示器是 1920x1080:

我通过两种方式获取显示器尺寸。下面的代码是 js-ctypes,但我简化了所有错误检查和其他 ctypes 的东西,并试图让它看起来像 c。但这是一个 winapi 问题而不是 ctypes 因此我没有用它标记主题。

第一种方法:

cPoint = POINT();
GetCursorPos(&cPoint);


cMon = MonitorFromPoint(cPoint, MONITOR_DEFAULTTONEAREST);


cMonInfo = MONITORINFOEX();
cMonInfo.cbSize = MONITORINFOEX.size;
GetMonitorInfo(cMon, &cMonInfo);

lpszDriver = null;
lpszDevice = cMonInfo.szDevice;

xTopLeft = cMonInfo.rcMonitor.left;
yTopLeft = cMonInfo.rcMonitor.top;
nWidth = cMonInfo.rcMonitor.right - xTopLeft;
nHeight = cMonInfo.rcMonitor.bottom - yTopLeft;

这给了我以下的矩形:

_RECT(-1920, -1080, -640, -360)

从右到左得到 1280 做 bottom - top 给出 720

尺寸肯定是错误的。应该是宽1920高1080

然后我尝试第二种方法:

hdcScreen = CreateDC(lpszDriver, lpszDevice, null, null);
nWidth = GetDeviceCaps(hdcScreen, HORZRES);
nHeight = GetDeviceCaps(hdcScreen, VERTRES);

这给了我同样的东西,1280 的宽度和 720 的高度。我脑子里乱七八糟的!如何获得 1920x1080?

同样的方法为我的主显示器提供了正确的尺寸,所以我很困惑。

编辑

我刚刚试了第三种方法,还是一样的问题:

var jsMonitorEnumProc = function(hMonitor, hdcMonitor, lprcMonitor, dwData) {
    xTopLeft = lprcMonitor.contents.left;
    yTopLeft = lprcMonitor.contents.top;
    nWidth = lprcMonitor.contents.right - xTopLeft;
    nHeight = lprcMonitor.contents.bottom - yTopLeft;

    return true;
}
EnumDisplayMonitors(null, null, jsMonitorEnumProc, 0);

这给了我以下的权利:

_RECT(0, 0, 1280, 1024)
_RECT(-1920, -1080, -640, -360)

第一个是我的主显示器,我们看到底部 - 顶部给出 1280,右 - 左给出 1024,这是正确的,我的主显示器是 1280 x 1024。

但是第二台显示器再次是 -360 - -1080 720 高度和 -640 - -1920 1280 宽度。我正在使用它来截取所有显示器的屏幕截图,第二个被剪掉了。

在我的非 dpi 感知应用程序 32 位 Firefox on Win 8.1 64 位中,我能够通过使用 EnumDisplaySettings 使用大小为 220 的 DISPLAY_DEVICE 结构来获得正确的尺寸。

js-ctypes:

// start - get all monitor resolutions
var iDevNum = -1;
while (true) {
    iDevNum++;
    var lpDisplayDevice = ostypes.TYPE.DISPLAY_DEVICE();
    lpDisplayDevice.cb = ostypes.TYPE.DISPLAY_DEVICE.size;
    var rez_EnumDisplayDevices = ostypes.API('EnumDisplayDevices')(null, iDevNum, lpDisplayDevice.address(), 0);
    //console.info('rez_EnumDisplayDevices:', rez_EnumDisplayDevices.toString(), uneval(rez_EnumDisplayDevices), cutils.jscGetDeepest(rez_EnumDisplayDevices));

    if (cutils.jscEqual(rez_EnumDisplayDevices, 0)) { // ctypes.winLastError != 0
        // iDevNum is greater than the largest device index.
        break;
    }

    console.info('lpDisplayDevice.DeviceName:', lpDisplayDevice.DeviceName.readString()); // "\.\DISPLAY1" till "\.\DISPLAY4"

    if (lpDisplayDevice.StateFlags & ostypes.CONST.DISPLAY_DEVICE_ATTACHED_TO_DESKTOP) {
        console.log('is monitor');

        var dm = ostypes.TYPE.DEVMODE(); // SIZEOF_DEVMODE = 148
        console.info('dm.size:', ostypes.TYPE.DEVMODE.size);
        //dm.dmFields = ostypes.CONST.DM_PELSWIDTH;
        //dm.dmSize = ostypes.TYPE.DEVMODE.size;

        console.log('iDevNum:', iDevNum, lpDisplayDevice.DeviceName.readString());
        var rez_EnumDisplaySettings = ostypes.API('EnumDisplaySettings')(lpDisplayDevice.DeviceName, ostypes.CONST.ENUM_CURRENT_SETTINGS, dm.address());
        //console.info('rez_EnumDisplaySettings:', rez_EnumDisplaySettings.toString(), uneval(rez_EnumDisplaySettings), cutils.jscGetDeepest(rez_EnumDisplaySettings));
        //console.info('dm:', dm.toString());

        collMonInfos.push({
            x: parseInt(cutils.jscGetDeepest(dm.u.dmPosition.x)),
            y: parseInt(cutils.jscGetDeepest(dm.u.dmPosition.y)),
            w: parseInt(cutils.jscGetDeepest(dm.dmPelsWidth)),
            h: parseInt(cutils.jscGetDeepest(dm.dmPelsHeight)),
            screenshot: null, // for winnt, each collMonInfos entry has screenshot data
            otherInfo: {
                nBPP: parseInt(cutils.jscGetDeepest(dm.dmBitsPerPel)),
                lpszDriver: null,
                lpszDevice: lpDisplayDevice.DeviceName
            }
        });
    }
}
// end - get all monitor resolutions