-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathmatplotlib.py
35 lines (29 loc) · 992 Bytes
/
matplotlib.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""
Minimal matplotlib backend which shows plots using Julia's display mechanism.
"""
from matplotlib.backend_bases import FigureManagerBase, Gcf
from matplotlib.backends.backend_agg import FigureCanvasAgg
from juliacall import Base as jl
FigureCanvas = FigureCanvasAgg
def show(format=None):
for figmanager in Gcf.get_all_fig_managers():
figmanager.show(format=format)
FORMAT_TO_MIME = {
'png': 'image/png',
'jpg': 'image/jpeg',
'jpeg': 'image/jpeg',
'tif': 'image/tiff',
'tiff': 'image/tiff',
'svg': 'image/svg+xml',
'pdf': 'application/pdf',
}
class FigureManager(FigureManagerBase):
def show(self, format=None):
fig = self.canvas.figure
mime = FORMAT_TO_MIME.get(format)
if format is None:
jl.display(fig)
elif mime is None:
raise ValueError('invalid format {}, expecting one of: {}'.format(format, ', '.join(FORMAT_TO_MIME.keys())))
else:
jl.display(mime, fig)