A PDF Matplotlib backend.
Author: Jouni K Seppänen <jks@iki.fi> and others.
Bases: matplotlib.backend_bases.FigureCanvasBase
Render the Figure
.
It is important that this method actually walk the artist tree even if not output is produced because this will trigger deferred work (like computing limits auto-limits and tick values) that users may want access to before saving to disk.
Return the default savefig file format as specified in rcParams["savefig.format"]
(default: 'png'
).
The returned string does not include a period. This method is overridden in backends that only support a single file type.
Bases: matplotlib.backend_bases.GraphicsContextBase
Copy properties of other into self.
Copy properties of other into self and return PDF commands needed to transform self into other.
Predicate: does the path need to be filled?
An optional argument can be used to specify an alternative _fillcolor, as needed by RendererPdf.draw_markers.
Make sure every pushed graphics state is popped.
Return the appropriate pdf operator to cause the path to be stroked, filled, or both.
Predicate: does the path need to be stroked (its outline drawn)? This tests for the various conditions that disable stroking the path, in which case it would presumably be filled.
Bases: object
PDF name object.
Bases: matplotlib.backends.backend_pdf.Operator
, enum.Enum
An enumeration.
Return the PDF operator to paint a path.
Fill the path with the fill color.
Stroke the outline of the path with the line color.
Bases: object
PDF operator object.
Bases: object
PDF file object.
Output target; if a string, a file will be opened for writing.
Information dictionary object (see PDF reference section 10.2.1 'Document Information Dictionary'), e.g.: {'Creator': 'My software', 'Author': 'Me', 'Title': 'Awesome'}
.
The standard keys are 'Title', 'Author', 'Subject', 'Keywords', 'Creator', 'Producer', 'CreationDate', 'ModDate', and 'Trapped'. Values have been predefined for 'Creator', 'Producer' and 'CreationDate'. They can be removed by setting them to None
.
Add a Gouraud triangle shading.
Triangle vertices, shape (n, 3, 2) where n = number of triangles, 3 = vertices, 2 = x, y.
Vertex colors, shape (n, 3, 1) or (n, 3, 4) as with points, but last dimension is either (gray,) or (r, g, b, alpha).
Return name of an ExtGState that sets alpha to the given value.
Flush all buffers and free all resources.
Given a dvi font object, return a name suitable for Op.selectfont. This registers the font information in self.dviFontInfo
if not yet registered.
Embed the TTF font from the named file into the document.
Write out the various deferred objects and the pdf end matter.
Select a font based on fontprop and return a name suitable for Op.selectfont. If fontprop is a string, it will be interpreted as the filename of the font.
Return name of an image XObject representing the given image.
Return name of a marker XObject representing the given path.
Reserve an ID for an indirect object.
The name is used for debugging in case we forget to print out the object with writeObject.
Write out the info dictionary, checking it for good form
Write out the PDF trailer.
Write out the xref table.
Bases: object
A multi-page PDF file.
In reality PdfPages
is a thin wrapper around PdfFile
, in order to avoid confusion when using savefig
and forgetting the format argument.
>>> 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.
Plots using PdfPages.savefig
will be written to a file at this location. The file is opened at once and any older file with the same name is overwritten.
If set to False, then empty pdf files will be deleted automatically when closed.
Information dictionary object (see PDF reference section 10.2.1 'Document Information Dictionary'), e.g.: {'Creator': 'My software', 'Author': 'Me', 'Title': 'Awesome'}
.
The standard keys are 'Title', 'Author', 'Subject', 'Keywords', 'Creator', 'Producer', 'CreationDate', 'ModDate', and 'Trapped'. Values have been predefined for 'Creator', 'Producer' and 'CreationDate'. They can be removed by setting them to None
.
Add a new text note to the page to be saved next. The optional positionRect specifies the position of the new note on the page. It is outside the page per default to make sure it is invisible on printouts.
Finalize this object, making the underlying file a complete PDF file.
Return the current number of pages in the multipage pdf file.
Return a modifiable information dictionary object (see PDF reference section 10.2.1 'Document Information Dictionary').
Bases: object
PDF reference object.
Use PdfFile.reserveObject() to create References.
Bases: matplotlib.backends._backend_pdf_ps.RendererPDFPSBase
Draw a Gouraud-shaded triangle.
GraphicsContextBase
The graphics context.
Array of (x, y) points for the triangle.
RGBA colors for each point of the triangle.
matplotlib.transforms.Transform
An affine transform to apply to the points.
Draw a series of Gouraud triangles.
Array of N (x, y) points for the triangles.
Array of N RGBA colors for each point of the triangles.
matplotlib.transforms.Transform
An affine transform to apply to the points.
Draw an RGBA image.
GraphicsContextBase
A graphics context with clipping information.
The distance in physical units (i.e., dots or pixels) from the left hand side of the canvas.
The distance in physical units (i.e., dots or pixels) from the bottom side of the canvas.
An array of RGBA pixels.
matplotlib.transforms.Affine2DBase
If and only if the concrete backend is written such that option_scale_image()
returns True
, an affine transformation (i.e., an Affine2DBase
) may be passed to draw_image()
. The translation vector of the transformation is given in physical units (i.e., dots or pixels). Note that the transformation does not override x and y, and has to be applied before translating the result by x and y (this can be accomplished by adding x and y to the translation vector defined by transform).
Draw a marker at each of path's vertices (excluding control points).
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.
GraphicsContextBase
The graphics context.
matplotlib.transforms.Transform
An affine transform applied to the marker.
matplotlib.transforms.Transform
An affine transform applied to the path.
Draw a Path
instance using the given affine transform.
Draw 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 is unused now, but the argument is kept for backwards compatibility.
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 the text instance.
GraphicsContextBase
The graphics context.
The x location of the text in display coords.
The y location of the text baseline in display coords.
The text string.
matplotlib.font_manager.FontProperties
The font properties.
The rotation angle in degrees anti-clockwise.
matplotlib.text.Text
The original text object to be rendered.
Note for backend implementers:
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.
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.
Return an instance of a GraphicsContextBase
.
Bases: object
PDF stream object.
This has no pdfRepr method. Instead, call begin(), then output the contents of the stream by calling write(), and finally call end().
Object id of the stream.
An unused Reference object for the length of the stream; None means to use a memory buffer so the length can be inlined.
The underlying object to write the stream to.
Extra key-value pairs to include in the stream header.
If the data is already png encoded, the decode parameters.
Finalize stream.
Write some data on the stream.
Bases: object
Store verbatim PDF command content for later inclusion in the stream.
Make one string from sequence of strings, with whitespace in between.
The whitespace is chosen to form lines of at most linelen characters, if possible.
Map Python objects to PDF syntax.
© 2012–2021 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.5.1/api/backend_pdf_api.html