我正在寻找使用matplotlib和任何交互式后端(例如TkAgg,Qt4Agg或macosx)获取屏幕大小的一般方法。
我正在尝试编写一个可以在屏幕上的一组标准位置打开窗口的功能,例如,屏幕的右半部分,或右上角。
我写了一个工作解决方案here,复制如下,但它需要一个人使用full_screen_toggle()(如建议的here)来创建一个全屏窗口来衡量它的大小。
我正在寻找一种方法来获取屏幕尺寸,而无需创建全屏窗口,然后更改其大小。
import matplotlib.pyplot as plt
def move_figure(position="top-right"):
'''
Move and resize a window to a set of standard positions on the screen.
Possible positions are:
top, bottom, left, right, top-left, top-right, bottom-left, bottom-right
'''
mgr = plt.get_current_fig_manager()
mgr.full_screen_toggle() # primitive but works to get screen size
py = mgr.canvas.height()
px = mgr.canvas.width()
d = 10 # width of the window border in pixels
if position == "top":
# x-top-left-corner, y-top-left-corner, x-width, y-width (in pixels)
mgr.window.setGeometry(d, 4*d, px - 2*d, py/2 - 4*d)
elif position == "bottom":
mgr.window.setGeometry(d, py/2 + 5*d, px - 2*d, py/2 - 4*d)
elif position == "left":
mgr.window.setGeometry(d, 4*d, px/2 - 2*d, py - 4*d)
elif position == "right":
mgr.window.setGeometry(px/2 + d, 4*d, px/2 - 2*d, py - 4*d)
elif position == "top-left":
mgr.window.setGeometry(d, 4*d, px/2 - 2*d, py/2 - 4*d)
elif position == "top-right":
mgr.window.setGeometry(px/2 + d, 4*d, px/2 - 2*d, py/2 - 4*d)
elif position == "bottom-left":
mgr.window.setGeometry(d, py/2 + 5*d, px/2 - 2*d, py/2 - 4*d)
elif position == "bottom-right":
mgr.window.setGeometry(px/2 + d, py/2 + 5*d, px/2 - 2*d, py/2 - 4*d)
if __name__ == '__main__':
# Usage example for move_figure()
plt.figure(1)
plt.plot([0, 1])
move_figure("top-right")
plt.figure(2)
plt.plot([0, 3])
move_figure("bottom-right")
答案 0 :(得分:1)
适用于OS X:
import AppKit
[(screen.frame().size.width, screen.frame().size.height) for screen in AppKit.NSScreen.screens()]
NSScreen
课程上的Apple文档。
答案 1 :(得分:1)
这适用于TKagg
import matplotlib.pyplot as plt
window = plt.get_current_fig_manager().window
screen_x, screen_y = window.wm_maxsize()
#or
screen_y = window.winfo_screenheight()
screen_x = window.winfo_screenwidth()
我见过的只有奇怪的事情,有时y尺寸偏差约22 px。