matplotlib.backends.backend_pgf
¶matplotlib.backends.backend_pgf.
FigureCanvas
¶matplotlib.backends.backend_pgf.
FigureCanvasPgf
(figure)[source]¶Bases: matplotlib.backend_bases.FigureCanvasBase
filetypes
= {'pdf': 'LaTeX compiled PGF picture', 'pgf': 'LaTeX PGF picture', 'png': 'Portable Network Graphics'}¶get_default_filetype
(self)[source]¶Get the default savefig file format as specified in rcParam
savefig.format
. Returned string excludes period. Overridden
in backends that only support a single file type.
print_pdf
(self, fname_or_fh, *args, **kwargs)[source]¶Use LaTeX to compile a Pgf generated figure to PDF.
matplotlib.backends.backend_pgf.
FigureManager
¶matplotlib.backends.backend_pgf.
LatexError
(message, latex_output='')[source]¶Bases: Exception
matplotlib.backends.backend_pgf.
LatexManager
[source]¶Bases: object
The LatexManager opens an instance of the LaTeX application for determining the metrics of text elements. The LaTeX environment can be modified by setting fonts and/or a custom preamble in the rc parameters.
matplotlib.backends.backend_pgf.
LatexManagerFactory
(**kwargs)[source]¶Bases: object
[Deprecated]
Notes
Deprecated since version 3.1:
previous_instance
= None¶matplotlib.backends.backend_pgf.
PdfPages
(filename, *, keep_empty=True, metadata=None)[source]¶Bases: object
A multi-page PDF file using the pgf backend
Examples
>>> import matplotlib.pyplot as plt
>>> # Initialize:
>>> with PdfPages('foo.pdf') as pdf:
... # As many times as you like, create a figure fig and save it:
... fig = plt.figure()
... pdf.savefig(fig)
... # When no figure is specified the current figure is saved
... pdf.savefig()
Create a new PdfPages object.
Parameters: |
|
---|
close
(self)[source]¶Finalize this object, running LaTeX in a temporary directory
and moving the final pdf file to filename
.
keep_empty
¶metadata
¶matplotlib.backends.backend_pgf.
RendererPgf
(figure, fh, dummy=False)[source]¶Bases: matplotlib.backend_bases.RendererBase
Creates a new PGF renderer that translates any drawing instruction into text commands to be interpreted in a latex pgfpicture environment.
Attributes: |
|
---|
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_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_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
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).
points_to_pixels
(self, points)[source]¶Convert points to display units.
You need to override this function (unless your backend doesn't have a dpi, e.g., 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
Parameters: |
|
---|---|
Returns: |
|
matplotlib.backends.backend_pgf.
common_texification
(text)[source]¶Do some necessary and/or useful substitutions for texts to be included in LaTeX documents.
matplotlib.backends.backend_pgf.
get_texcommand
()[source]¶[Deprecated] Get chosen TeX system from rc.
Notes
Deprecated since version 3.0.
matplotlib.backends.backend_pgf.
make_pdf_to_png_converter
()[source]¶Returns a function that converts a pdf file to a png file.
matplotlib.backends.backend_pgf.
repl_escapetext
(m)¶matplotlib.backends.backend_pgf.
repl_mathdefault
(m)¶