matplotlib窗口布局问题

发布于 2024-12-10 11:34:01 字数 191 浏览 0 评论 0原文

我有两个关于 mpl 窗口定位的问题(使用 WXAgg 后端)

1-) 如何创建最大化窗口,而不是每次都单击窗口将其最大化?

2-) 我有两个屏幕。有趣的是,我的 mpl 窗口往往在我的小屏幕上打开。如何强制 mpl/ipython/WX/X-windows 在我的第二台或更大的显示器上打开 mpl 窗口?

谢谢。

I have two questions regarding to the positioning of a mpl window (using WXAgg backend)

1-) How to create a maximized window, instead of me clicking on window to maximize it each time?

2-) I have two screens. Interestingly, my mpl windows tend to open on my small screen. How can I force mpl/ipython/WX/X-windows to open mpl windows on my 2nd and bigger monitor?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暖心男生 2024-12-17 11:34:01

我使用 Tk 库进行绘图,您可以通过以下方式在 ~/.matplotlib/matplotlibrc 文件中默认设置:

backend      : TkAgg

方式设置窗口位置和尺寸:

import matplotlib.pyplot as plot
wm = plot.get_current_fig_manager()
wm.window.wm_geometry("800x900+50+50")

这允许我使用以下 想要在 Mac 上定位他们的 matplotlib 窗口,我想快速做出贡献。我经常使用或不使用外部屏幕(在工作中和家里)工作,并且希望通过某种方式自动使用外部屏幕(如果可用)。幸运的是,Mac 操作系统必须可以通过 AppKit 进行交互。

以下代码片段将返回带有位置、宽度和高度的 ScreenInfo 对象列表:

from AppKit import NSScreen

class ScreenInfo:
    pass

def getScreensInfo():
    screens = []

    for i, s in enumerate(NSScreen.screens()):
        screen = ScreenInfo()
        frame = s.frame()
        screen.x = frame.origin.x
        screen.y = frame.origin.y
        screen.w = frame.size.width
        screen.h = frame.size.height
        screens.append(screen)
    return screens

I use the Tk library for plotting, you can set this up by default in the ~/.matplotlib/matplotlibrc file by writing:

backend      : TkAgg

This allows me to set the window position and dimensions using:

import matplotlib.pyplot as plot
wm = plot.get_current_fig_manager()
wm.window.wm_geometry("800x900+50+50")

As someone might be wanting to position their matplotlib window on a Mac I wanted to make a quick contribution. I frequently work with and without an external screen (at work and at home) and wanted some way of automatically using the external screen if it is available. Luckily must of the Mac operating system can be interfaced through AppKit.

The following snippet will return a list of ScreenInfo objects with position, width and height:

from AppKit import NSScreen

class ScreenInfo:
    pass

def getScreensInfo():
    screens = []

    for i, s in enumerate(NSScreen.screens()):
        screen = ScreenInfo()
        frame = s.frame()
        screen.x = frame.origin.x
        screen.y = frame.origin.y
        screen.w = frame.size.width
        screen.h = frame.size.height
        screens.append(screen)
    return screens
摇划花蜜的午后 2024-12-17 11:34:01

相对于您的第一个问题,您可以在图形管理器上使用 Maximize (因为您的图形管理器是 FigureManagerWx 实例)或在其他后端的情况下使用等效方法:

>>> from matplotlib import pyplot as plt
>>> plt.plot([1,2,6,4])
[<matplotlib.lines.Line2D object at 0x0000000008E5D2E8>]
>>> mng = plt.get_current_fig_manager()
>>> plt.show()                                    # you get normal size
>>> mng.frame.Maximize(True)                      # now mpl window maximizes

对于第二个问题,我不确定(我无法测试它),但如果可以通过设置图形在两个显示器中扩展的屏幕中的位置来解决问题,那么您可以使用 SetPosition (同样适用于 wxAgg 后端):

>>> mng.frame.SetPosition(*args, **kwargs)

Relative to your first question, you can use Maximize on your figure manager (as your figure manager is a FigureManagerWx instance) or equivalent methods in case of other backends:

>>> from matplotlib import pyplot as plt
>>> plt.plot([1,2,6,4])
[<matplotlib.lines.Line2D object at 0x0000000008E5D2E8>]
>>> mng = plt.get_current_fig_manager()
>>> plt.show()                                    # you get normal size
>>> mng.frame.Maximize(True)                      # now mpl window maximizes

For the second question, I am not sure (i can not test it) but if the problem can be solved by setting the position of your figure in a screen extended in two monitors, then you can use SetPosition (again for a wxAgg backend):

>>> mng.frame.SetPosition(*args, **kwargs)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文