@header@
 
 
matplotlib.backends.backend_svg (version 0.87.7)
index
/usr/lib64/python2.4/site-packages/matplotlib/backends/backend_svg.py

 
Modules
       
base64
codecs
os
tempfile

 
Classes
       
matplotlib.backend_bases.FigureCanvasBase
FigureCanvasSVG
matplotlib.backend_bases.FigureManagerBase
FigureManagerSVG
FigureManagerSVG
matplotlib.backend_bases.RendererBase
RendererSVG

 
class FigureCanvasSVG(matplotlib.backend_bases.FigureCanvasBase)
     Methods defined here:
print_figure(self, filename, dpi, facecolor='w', edgecolor='w', orientation='portrait', **kwargs)

Methods inherited from matplotlib.backend_bases.FigureCanvasBase:
__init__(self, figure)
blit(self, bbox=None)
blit the canvas in bbox (default entire canvas)
button_press_event(self, x, y, button, guiEvent=None)
Backend derived classes should call this function on any mouse
button press.  x,y are the canvas coords: 0,0 is lower, left.
button and key are as defined in MouseEvent
button_release_event(self, x, y, button, guiEvent=None)
Backend derived classes should call this function on any mouse
button release.  x,y are the canvas coords: 0,0 is lower, left.
button and key are as defined in MouseEvent
draw(self, *args, **kwargs)
Render the figure
draw_cursor(self, event)
Draw a cursor in the event.axes if inaxes is not None.  Use
native GUI drawing for efficiency if possible
draw_event(self, renderer)
draw_idle(self, *args, **kwargs)
draw only if idle; defaults to draw but backends can overrride
get_width_height(self)
return the figure width and height in points or pixels
(depending on the backend), truncated to integers
key_press_event(self, key, guiEvent=None)
key_release_event(self, key, guiEvent=None)
motion_notify_event(self, x, y, guiEvent=None)
Backend derived classes should call this function on any
motion-notify-event. x,y are the canvas coords: 0,0 is lower, left.
button and key are as defined in MouseEvent
mpl_connect(self, s, func)
Connect event with string s to func.  The signature of func is
 
  def func(event)
 
where event is a MplEvent.  The following events are recognized
 
 'resize_event'
 'draw_event'
 'key_press_event'
 'key_release_event'
 'button_press_event'
 'button_release_event'
 'motion_notify_event'
 
 For the three events above, if the mouse is over the axes,
 the variable event.inaxes will be set to the axes it is over,
 and additionally, the variables event.xdata and event.ydata
 will be defined.  This is the mouse location in data coords.
 See backend_bases.MplEvent.
 
return value is a connection id that can be used with
mpl_disconnect
mpl_disconnect(self, cid)
Connect s to func. return an id that can be used with disconnect
Method should return None
resize(self, w, h)
set the canvas size in pixels
resize_event(self)
switch_backends(self, FigureCanvasClass)
instantiate an instance of FigureCanvasClass
 
This is used for backend switching, eg, to instantiate a
FigureCanvasPS from a FigureCanvasGTK.  Note, deep copying is
not done, so any changes to one of the instances (eg, setting
figure size or line props), will be reflected in the other

Data and other attributes inherited from matplotlib.backend_bases.FigureCanvasBase:
events = ('key_press_event', 'key_release_event', 'button_press_event', 'button_release_event', 'motion_notify_event')

 
FigureManager = class FigureManagerSVG(matplotlib.backend_bases.FigureManagerBase)
     Methods inherited from matplotlib.backend_bases.FigureManagerBase:
__init__(self, canvas, num)
destroy(self)
full_screen_toggle(self)
key_press(self, event)
resize(self, w, h)
For gui backends: resize window in pixels
show_popup(self, msg)
Display message in a popup -- GUI only

 
class FigureManagerSVG(matplotlib.backend_bases.FigureManagerBase)
     Methods inherited from matplotlib.backend_bases.FigureManagerBase:
__init__(self, canvas, num)
destroy(self)
full_screen_toggle(self)
key_press(self, event)
resize(self, w, h)
For gui backends: resize window in pixels
show_popup(self, msg)
Display message in a popup -- GUI only

 
class RendererSVG(matplotlib.backend_bases.RendererBase)
     Methods defined here:
__init__(self, width, height, svgwriter, basename=None)
close_group(self, s)
draw_arc(self, gc, rgbFace, x, y, width, height, angle1, angle2, rotation)
Ignores angles for now
draw_image(self, x, y, im, bbox)
draw_line(self, gc, x1, y1, x2, y2)
draw_lines(self, gc, x, y, transform=None)
draw_point(self, gc, x, y)
draw_polygon(self, gc, rgbFace, points)
draw_rectangle(self, gc, rgbFace, x, y, width, height)
draw_text(self, gc, x, y, s, prop, angle, ismath)
finish(self)
flipy(self)
get_canvas_width_height(self)
get_text_width_height(self, s, prop, ismath)
open_group(self, s)
option_image_nocomposite(self)
if svg.image_noscale is True, compositing multiple images into one is prohibited

Methods inherited from matplotlib.backend_bases.RendererBase:
draw_line_collection(self, segments, transform, clipbox, colors, linewidths, linestyle, antialiaseds, offsets, transOffset)
This is a function for optimized line drawing. If you need to draw
many line segments with similar properties, it is faster to avoid the
overhead of all the object creation etc. The lack of total
configurability is compensated for with efficiency. Hence we don't use
a GC and many of the line props it supports. See
matplotlib.collections for more details.
 
segments is a sequence of ( line0, line1, line2), where linen =
is an Mx2 array with columns x, y.  Each line can be a
different length
 
transform is used to Transform the lines
 
clipbox is a  xmin, ymin, width, height clip rect
 
colors is a tuple of RGBA tuples
 
linewidths is a tuple of linewidths
*** really should be called 'dashes' not 'linestyle', since
we call gc.set_dashes() not gc.set_linestyle() ***
 
linestyle is an (offset, onoffseq) tuple or None,None for solid
 
antialiseds is a tuple of ones or zeros indicating whether the
segment should be aa or not
 
offsets, if not None, is an Nx2 array of x,y offsets to
translate the lines by after transform is used to transform
the offset coords
 
This function could be overridden in the backend to possibly implement
faster drawing, but it is already much faster than using draw_lines()
by itself.
draw_poly_collection(self, verts, transform, clipbox, facecolors, edgecolors, linewidths, antialiaseds, offsets, transOffset)
Draw a polygon collection
 
verts are a sequence of polygon vectors, where each polygon
vector is a sequence of x,y tuples of vertices
 
facecolors and edgecolors are a sequence of RGBA tuples
linewidths are a sequence of linewidths
antialiaseds are a sequence of 0,1 integers whether to use aa
 
If a linewidth is zero or an edgecolor alpha is zero, the
line will be omitted; similarly, the fill will be omitted
if the facecolor alpha is zero.
draw_quad_mesh(self, meshWidth, meshHeight, colors, xCoords, yCoords, clipbox, transform, offsets, transOffset, showedges)
Draw a quadrilateral mesh
See documentation in QuadMesh class in collections.py for details
draw_regpoly_collection(self, clipbox, offsets, transOffset, verts, sizes, facecolors, edgecolors, linewidths, antialiaseds)
Draw a regular poly collection
 
offsets   - is a sequence is x,y tuples
transOffset - maps this to display coords
 
verts - are the vertices of the regular polygon at the origin
 
sizes are the area of the circle that circumscribes the
polygon in points^2
 
facecolors and edgecolors are a sequence of RGBA tuples
linewidths are a sequence of linewidths
antialiaseds are a sequence of 0,1 integers whether to use aa
draw_tex(self, gc, x, y, s, prop, angle, ismath='TeX!')
get_image_magnification(self)
Get the factor by which to magnify images passed to draw_image.
Allows a backend to have images at a different resolution to other
artists.
get_texmanager(self)
get_text_extent(self, text)
Get the text extent in window coords
new_gc(self)
Return an instance of a GraphicsContextBase
points_to_pixels(self, points)
Convert points to display units
points - a float or a numerix array of float
return points converted to pixels
 
You need to override this function (unless your backend doesn't have a
dpi, eg, postscript or svg).
Some imaging systems assume some value for pixels per inch.
points to pixels = points * pixels_per_inch/72.0 * dpi/72.0
strip_math(self, s)

 
Functions
       
FT2Font(...)
FT2Font
new_figure_manager(num, *args, **kwargs)

 
Data
        __version__ = '0.87.7'
backend_version = '0.87.7'
division = _Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 8192)
fontManager = <matplotlib.font_manager.FontManager instance>
math_parse_s_ft2font_svg = <matplotlib.mathtext.math_parse_s_ft2font_common instance>
rcParams = {'axes.axisbelow': False, 'axes.edgecolor': 'k', 'axes.facecolor': 'w', 'axes.formatter.limits': (-7, 7), 'axes.grid': False, 'axes.hold': True, 'axes.labelcolor': 'k', 'axes.labelsize': 'medium', 'axes.linewidth': 1.0, 'axes.titlesize': 'medium', ...}
svgProlog = '<?xml version="1.0" standalone="no"?>\n<!DOCTYPE ...3.org/1999/xlink"\n version="1.1"\n id="svg1">\n'
verbose = <matplotlib.Verbose instance>
@footer@