以编程方式更改Windows分辨率

时间:2018-08-23 13:49:55

标签: python windows screen-resolution

我正在使用以下代码段通过python更改Windows的屏幕分辨率,并且在1366x768、1024x768和800x600分辨率下均可正常工作。但不适用于1440x810分辨率。怎么了?

import ctypes
import struct
import sys

def set_res(width, height, bpp=32):
    DM_BITSPERPEL = 0x00040000
    DM_PELSWIDTH = 0x00080000
    DM_PELSHEIGHT = 0x00100000
    CDS_UPDATEREGISTRY = 0x00000001
    SIZEOF_DEVMODE = 148

    user32 = ctypes.WinDLL('user32.dll')
    DevModeData = struct.calcsize("32BHH") * '\x00'
    DevModeData += struct.pack("H", SIZEOF_DEVMODE)
    DevModeData += struct.calcsize("H") * '\x00'
    dwFields = (width and DM_PELSWIDTH or 0) | (height and DM_PELSHEIGHT or 0) | (bpp and DM_BITSPERPEL or 0)
    DevModeData += struct.pack("L", dwFields)
    DevModeData += struct.calcsize("l9h32BHL") * '\x00'
    DevModeData += struct.pack("LLL", bpp or 0, width or 0, height or 0)
    DevModeData += struct.calcsize("8L") * '\x00'
    result = user32.ChangeDisplaySettingsA(DevModeData, CDS_UPDATEREGISTRY)
    return result == 0 # success if zero, some failure otherwise

if(__name__ == "__main__"):
    result = set_res(1440, 810)
    sys.exit(result)

2 个答案:

答案 0 :(得分:1)

检查了我的系统屏幕分辨率选项是否可用。

它具有以下分辨率选项。

enter image description here

该脚本在上述所有选项中均能正常工作。

请注意,1440 x 810分辨率选项不可用,因此在我的系统上也不起作用。

问题可能与该系统上对屏幕分辨率的支持有关,而与上述代码无关。

答案 1 :(得分:0)

您必须具有 Windows 支持的分辨率才能使其工作。

对于那些想要在 python 3.x 上使用这个脚本的人,请使用这个:

import ctypes
import struct
import sys

def set_res(width, height, bpp=32):
    DM_BITSPERPEL = 0x00040000
    DM_PELSWIDTH = 0x00080000
    DM_PELSHEIGHT = 0x00100000
    CDS_UPDATEREGISTRY = 0x00000001
    SIZEOF_DEVMODE = 148

    user32 = ctypes.WinDLL('user32.dll')
    DevModeData = struct.calcsize("32BHH") * bytes('\x00','utf')
    DevModeData += struct.pack("H", SIZEOF_DEVMODE)
    DevModeData += struct.calcsize("H") * bytes('\x00','utf')
    dwFields = (width and DM_PELSWIDTH or 0) | (height and DM_PELSHEIGHT or 0) | (bpp and DM_BITSPERPEL or 0)
    DevModeData += struct.pack("L", dwFields)
    DevModeData += struct.calcsize("l9h32BHL") * bytes('\x00','utf')
    DevModeData += struct.pack("LLL", bpp or 0, width or 0, height or 0)
    DevModeData += struct.calcsize("8L") * bytes('\x00','utf')
    result = user32.ChangeDisplaySettingsA(DevModeData, CDS_UPDATEREGISTRY)
    return result == 0  # success if zero, some failure otherwise

if(__name__ == "__main__"):
    result = set_res(1280, 720)
    sys.exit(result)