自定义 matplotlib 图像显示以添加复制/粘贴
我想自定义 matplotlib 图像显示,以便我可以输入 control-c 并将图像复制到剪贴板,然后我可以将其复制到 openoffice 电子表格以组织所有原始数据和图像结果。有什么办法可以做到这一点吗?谢谢!
I would like to customize matplotlib image display so that i can type control-c and it will copy the image to the clipboard so then i can copy it to openoffice spreadsheet to organize all of my raw data and image results. Is there any way to do this? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 wx 后端,
FigureCanvasWxAgg
有一个Copy_to_Clipboard
方法可供您使用。您可以绑定 CTRL+C 键事件来调用此方法。有关示例,请参阅此示例代码。If you're using the wx backend,
FigureCanvasWxAgg
has aCopy_to_Clipboard
method you can use. You could bind the CTRL+C key event to call this method. For an example, see this sample code.这适用于 tk 后端,但我不知道如何将图像复制到剪贴板。对于文本,我可以使用 xclip,但图像不起作用!由于某种原因,wx 后端在 ubuntu 上运行得不太好......
This works for tk backend, but i have no clue how to copy an image to a clipboard. For text, i can use xclip, but images dont work! And for some reason the wx backend doesnt work too well on ubuntu...