python中如何判断大小_如何在matplotlib中确定屏幕大小

我正在寻找一种通用的方法,以像素为单位使用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")

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值