matplotlib.backends.backend_svg
¶matplotlib.backends.backend_svg.
FigureCanvas
¶matplotlib.backends.backend_svg.
FigureCanvasSVG
(figure)[source]¶Bases: matplotlib.backend_bases.FigureCanvasBase
filetypes
= {'svg': 'Scalable Vector Graphics', 'svgz': 'Scalable Vector Graphics'}¶fixed_dpi
= 72¶matplotlib.backends.backend_svg.
RendererSVG
(width, height, svgwriter, basename=None, image_dpi=72)[source]¶Bases: matplotlib.backend_bases.RendererBase
draw_gouraud_triangle
(self, gc, points, colors, trans)[source]¶Draw a Gouraud-shaded triangle.
Parameters: |
|
---|
draw_gouraud_triangles
(self, gc, triangles_array, colors_array, transform)[source]¶Draws a series of Gouraud triangles.
Parameters: |
|
---|
draw_image
(self, gc, x, y, im, transform=None)[source]¶Draw an RGBA image.
Parameters: |
|
---|
draw_markers
(self, gc, marker_path, marker_trans, path, trans, rgbFace=None)[source]¶Draws a marker at each of the vertices in path. This includes all vertices, including control points on curves. To avoid that behavior, those vertices should be removed before calling this function.
This provides a fallback implementation of draw_markers that
makes multiple calls to draw_path()
. Some backends may
want to override this method in order to draw the marker only
once and reuse it multiple times.
Parameters: |
|
---|
draw_path
(self, gc, path, transform, rgbFace=None)[source]¶Draws a Path
instance using the
given affine transform.
draw_path_collection
(self, gc, master_transform, paths, all_transforms, offsets, offsetTrans, facecolors, edgecolors, linewidths, linestyles, antialiaseds, urls, offset_position)[source]¶Draws a collection of paths selecting drawing properties from the lists facecolors, edgecolors, linewidths, linestyles and antialiaseds. offsets is a list of offsets to apply to each of the paths. The offsets in offsets are first transformed by offsetTrans before being applied. offset_position may be either "screen" or "data" depending on the space that the offsets are in.
This provides a fallback implementation of
draw_path_collection()
that makes multiple calls to
draw_path()
. Some backends may want to override this in
order to render each set of path data only once, and then
reference that path multiple times with the different offsets,
colors, styles etc. The generator methods
_iter_collection_raw_paths()
and
_iter_collection()
are provided to help with (and
standardize) the implementation across backends. It is highly
recommended to use those generators, so that changes to the
behavior of draw_path_collection()
can be made globally.
draw_text
(self, gc, x, y, s, prop, angle, ismath=False, mtext=None)[source]¶Draw the text instance.
Parameters: |
|
---|
Notes
backend implementers note
When you are trying to determine if you have gotten your bounding box right (which is what enables the text layout/alignment to work properly), it helps to change the line in text.py:
if 0: bbox_artist(self, renderer)
to if 1, and then the actual bounding box will be plotted along with your text.
flipy
(self)[source]¶Return whether y values increase from top to bottom.
Note that this only affects drawing of texts and images.
get_image_magnification
(self)[source]¶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_text_width_height_descent
(self, s, prop, ismath)[source]¶Get the width, height, and descent (offset from the bottom
to the baseline), in display coords, of the string s with
FontProperties
prop
open_group
(self, s, gid=None)[source]¶Open a grouping element with label s and gid (if set) as id.
Only used by the SVG renderer.
option_image_nocomposite
(self)[source]¶Return whether image composition by Matplotlib should be skipped.
Raster backends should usually return False (letting the C-level
rasterizer take care of image composition); vector backends should
usually return not rcParams["image.composite_image"]
.
option_scale_image
(self)[source]¶Return whether arbitrary affine transformations in draw_image()
are supported (True for most vector backends).
matplotlib.backends.backend_svg.
XMLWriter
(file)[source]¶Bases: object
Parameters: |
|
---|
close
(self, id)[source]¶Closes open elements, up to (and including) the element identified by the given identifier.
Parameters: |
|
---|
comment
(self, comment)[source]¶Adds a comment to the output stream.
Parameters: |
|
---|
data
(self, text)[source]¶Adds character data to the output stream.
Parameters: |
|
---|
element
(self, tag, text=None, attrib={}, **extra)[source]¶Adds an entire element. This is the same as calling start()
,
data()
, and end()
in sequence. The text argument can be
omitted.
end
(self, tag=None, indent=True)[source]¶Closes the current element (opened by the most recent call to
start()
).
Parameters: |
|
---|
start
(self, tag, attrib={}, **extra)[source]¶Opens a new element. Attributes can be given as keyword
arguments, or as a string/string dictionary. The method returns
an opaque identifier that can be passed to the close()
method, to close all open elements up to and including this one.
Parameters: |
|
---|---|
Returns: |
|