屏幕距离不好
我试图在 wxpython 应用程序中获取一个图形对象(使用 matplotlib)。我不需要绘制(或查看)该图,因为我只想将其保存在 png 文件中。
当我使用 Windows XP 执行此操作时,一切都正常,如果我在 wxpython 应用程序之外执行此操作,例如在 sphinx 文档内执行此操作,则一切都正常。 但是如果我在我的 wxpython 应用程序中执行此操作...出现问题并引发此问题:
_tkinter.TclError: bad screen distance "320.0"
有人知道吗?
I'm trying to obtain an figure object (using matplotlib), inside a wxpython application. I don't need to plot (or see) the figure, because I would want only to save it in a png file.
When I do it using Windows XP, it is all okay, if I do it outside the wxpython application, for example inside sphinx documentation, it's all okay again.
But If I do it inside my wxpython application... something goes wrong and it raises this:
_tkinter.TclError: bad screen distance "320.0"
Has someone any idea about?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您尝试使用 wxPython 并收到 tkinter 错误,因此您可能没有告诉 matplotlib 使用 wx.这可以在 matplotlibrc 文件或程序中完成。说明位于此处。
Since you're trying to use wxPython and getting tkinter errors, you probably haven't told matplotlib to use wx. This can either be done in the matplotlibrc file, or in the program. Instructions are here.