##// END OF EJS Templates
Fix subtle regular expression bug to treat '%foo?' correctly.
Fix subtle regular expression bug to treat '%foo?' correctly.

File last commit:

r2819:f2b700fb
r2879:411be32c
Show More
backend_payload_svg.py
30 lines | 976 B | text/x-python | PythonLexer
/ IPython / zmq / pylab / backend_payload_svg.py
epatters
Initial checkin of (not yet working) matplotlib payload backend and associated machinery.
r2756 # Standard library imports
from cStringIO import StringIO
# System library imports.
from matplotlib.backends.backend_svg import new_figure_manager
from matplotlib._pylab_helpers import Gcf
# Local imports.
from backend_payload import add_plot_payload
def show():
""" Deliver a SVG payload.
"""
epatters
* The SVG payload matplotlib backend now works....
r2758 figure_manager = Gcf.get_active()
epatters
Initial checkin of (not yet working) matplotlib payload backend and associated machinery.
r2756 if figure_manager is not None:
Brian Granger
Improved matplotlib backend and plotting....
r2819 # Make the background transparent.
# figure_manager.canvas.figure.patch.set_alpha(0.0)
# Set the background to white instead so it looks good on black.
figure_manager.canvas.figure.set_facecolor('white')
figure_manager.canvas.figure.set_edgecolor('white')
epatters
Initial checkin of (not yet working) matplotlib payload backend and associated machinery.
r2756 data = svg_from_canvas(figure_manager.canvas)
add_plot_payload('svg', data)
def svg_from_canvas(canvas):
""" Return a string containing the SVG representation of a FigureCanvasSvg.
"""
string_io = StringIO()
canvas.print_svg(string_io)
return string_io.getvalue()