我正在寻找一种通用方法,使用 matplotlib 和任何交互式后端(例如 TkAgg、Qt4Agg 或 macosx)来获取屏幕大小(以像素为单位)。
我正在尝试编写一个函数,它可以在屏幕上的一组标准位置打开一个窗口,例如屏幕的右半部分或右上角。
我在这里编写了一个工作解决方案,复制在下面,但它需要使用 full_screen_toggle() (如此处建议的)来创建一个全屏窗口来测量其大小。
我正在寻找一种方法来获取屏幕大小,而无需创建全屏窗口然后更改其大小。
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")
Run Code Online (Sandbox Code Playgroud)
这适用于 OS X:
import AppKit
[(screen.frame().size.width, screen.frame().size.height) for screen in AppKit.NSScreen.screens()]
Run Code Online (Sandbox Code Playgroud)
关于该类的 Apple 文档NSScreen。
| 归档时间: |
|
| 查看次数: |
9155 次 |
| 最近记录: |