A PDF matplotlib backend Author: Jouni K Seppänen <jks@iki.fi>
matplotlib.backends.backend_pdf.FigureCanvas
class matplotlib.backends.backend_pdf.FigureCanvasPdf(figure)
[source]
Bases: matplotlib.backend_bases.FigureCanvasBase
The canvas the figure renders into. Calls the draw and print fig methods, creates the renderers, etc...
Attributes: |
|
---|
filetypes = {'pdf': 'Portable Document Format'}
fixed_dpi = 72
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, filename, *, dpi=72, bbox_inches_restore=None, metadata=None, **kwargs)
[source]
class matplotlib.backends.backend_pdf.GraphicsContextPdf(file)
[source]
Bases: matplotlib.backend_bases.GraphicsContextBase
alpha_cmd(self, alpha, forced, effective_alphas)
[source]
capstyle_cmd(self, style)
[source]
capstyles = {'butt': 0, 'projecting': 2, 'round': 1}
clip_cmd(self, cliprect, clippath)
[source]
Set clip rectangle. Calls self.pop() and self.push().
commands = ((('_cliprect', '_clippath'), <function GraphicsContextPdf.clip_cmd>), (('_alpha', '_forced_alpha', '_effective_alphas'), <function GraphicsContextPdf.alpha_cmd>), (('_capstyle',), <function GraphicsContextPdf.capstyle_cmd>), (('_fillcolor',), <function GraphicsContextPdf.fillcolor_cmd>), (('_joinstyle',), <function GraphicsContextPdf.joinstyle_cmd>), (('_linewidth',), <function GraphicsContextPdf.linewidth_cmd>), (('_dashes',), <function GraphicsContextPdf.dash_cmd>), (('_rgb',), <function GraphicsContextPdf.rgb_cmd>), (('_hatch', '_hatch_color'), <function GraphicsContextPdf.hatch_cmd>))
copy_properties(self, other)
[source]
Copy properties of other into self.
dash_cmd(self, dashes)
[source]
delta(self, other)
[source]
Copy properties of other into self and return PDF commands needed to transform self into other.
fill(self, *args)
[source]
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.
fillcolor_cmd(self, rgb)
[source]
finalize(self)
[source]
Make sure every pushed graphics state is popped.
hatch_cmd(self, hatch, hatch_color)
[source]
joinstyle_cmd(self, style)
[source]
joinstyles = {'bevel': 2, 'miter': 0, 'round': 1}
linewidth_cmd(self, width)
[source]
paint(self)
[source]
Return the appropriate pdf operator to cause the path to be stroked, filled, or both.
pop(self)
[source]
push(self)
[source]
rgb_cmd(self, rgb)
[source]
stroke(self)
[source]
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.
class matplotlib.backends.backend_pdf.Name(name)
[source]
Bases: object
PDF name object.
static hexify(match)
[source]
name
pdfRepr(self)
[source]
class matplotlib.backends.backend_pdf.Operator(op)
[source]
Bases: object
PDF operator object.
op
pdfRepr(self)
[source]
class matplotlib.backends.backend_pdf.PdfFile(filename, metadata=None)
[source]
Bases: object
PDF file object.
addGouraudTriangles(self, points, colors)
[source]
alphaState(self, alpha)
[source]
Return name of an ExtGState that sets alpha to the given value.
beginStream(self, id, len, extra=None, png=None)
[source]
close(self)
[source]
Flush all buffers and free all resources.
createType1Descriptor(self, t1font, fontfile)
[source]
dviFontName(self, dvifont)
[source]
Given a dvi font object, return a name suitable for Op.selectfont. This registers the font information in self.dviFontInfo if not yet registered.
embedTTF(self, filename, characters)
[source]
Embed the TTF font from the named file into the document.
endStream(self)
[source]
finalize(self)
[source]
Write out the various deferred objects and the pdf end matter.
fontName(self, fontprop)
[source]
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.
hatchPattern(self, hatch_style)
[source]
imageObject(self, image)
[source]
Return name of an image XObject representing the given image.
markerObject(self, path, trans, fill, stroke, lw, joinstyle, capstyle)
[source]
Return name of a marker XObject representing the given path.
newPage(self, width, height)
[source]
newTextnote(self, text, positionRect=[-100, -100, 0, 0])
[source]
output(self, *data)
[source]
pathCollectionObject(self, gc, path, trans, padding, filled, stroked)
[source]
static pathOperations(path, transform, clip=None, simplify=None, sketch=None)
[source]
recordXref(self, id)
[source]
reserveObject(self, name='')
[source]
Reserve an ID for an indirect object. The name is used for debugging in case we forget to print out the object with writeObject.
texFontMap
write(self, data)
[source]
writeFonts(self)
[source]
writeGouraudTriangles(self)
[source]
writeHatches(self)
[source]
writeImages(self)
[source]
writeInfoDict(self)
[source]
Write out the info dictionary, checking it for good form
writeMarkers(self)
[source]
writeObject(self, object, contents)
[source]
writePath(self, path, transform, clip=False, sketch=None)
[source]
writePathCollectionTemplates(self)
[source]
writeTrailer(self)
[source]
Write out the PDF trailer.
writeXref(self)
[source]
Write out the xref table.
class matplotlib.backends.backend_pdf.PdfPages(filename, keep_empty=True, metadata=None)
[source]
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.
Parameters: |
|
---|
attach_note(self, text, positionRect=[-100, -100, 0, 0])
[source]
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.
close(self)
[source]
Finalize this object, making the underlying file a complete PDF file.
get_pagecount(self)
[source]
Returns the current number of pages in the multipage pdf file.
infodict(self)
[source]
Return a modifiable information dictionary object (see PDF reference section 10.2.1 'Document Information Dictionary').
keep_empty
savefig(self, figure=None, **kwargs)
[source]
Saves a Figure
to this file as a new page.
Any other keyword arguments are passed to savefig()
.
Parameters: |
|
---|
class matplotlib.backends.backend_pdf.Reference(id)
[source]
Bases: object
PDF reference object. Use PdfFile.reserveObject() to create References.
pdfRepr(self)
[source]
write(self, contents, file)
[source]
class matplotlib.backends.backend_pdf.RendererPdf(file, image_dpi, height, width)
[source]
Bases: matplotlib.backends._backend_pdf_ps.RendererPDFPSBase
afm_font_cache
[Deprecated]
Deprecated since version 3.1:
check_gc(self, gc, fillcolor=None)
[source]
draw_gouraud_triangle(self, gc, points, colors, trans)
[source]
Draw a Gouraud-shaded triangle.
Parameters: |
|
---|
draw_gouraud_triangles(self, gc, points, colors, trans)
[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_mathtext(self, gc, x, y, s, prop, angle)
[source]
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_tex(self, gc, x, y, s, prop, angle, ismath='TeX!', mtext=None)
[source]
draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None)
[source]
Draw the text instance.
Parameters: |
|
---|
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.
encode_string(self, s, fonttype)
[source]
finalize(self)
[source]
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.
merge_used_characters(self, other)
[source]
new_gc(self)
[source]
Return an instance of a GraphicsContextBase
.
track_characters(self, font, s)
[source]
Keeps track of which characters are required from each font.
class matplotlib.backends.backend_pdf.Stream(id, len, file, extra=None, png=None)
[source]
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().
id: object id of stream; len: an unused Reference object for the length of the stream, or None (to use a memory buffer); file: a PdfFile; extra: a dictionary of extra key-value pairs to include in the stream header; png: if the data is already png compressed, the decode parameters
compressobj
end(self)
[source]
Finalize stream.
extra
file
id
len
pdfFile
pos
write(self, data)
[source]
Write some data on the stream.
class matplotlib.backends.backend_pdf.Verbatim(x)
[source]
Bases: object
Store verbatim PDF command content for later inclusion in the stream.
pdfRepr(self)
[source]
matplotlib.backends.backend_pdf.fill(strings, linelen=75)
[source]
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.
matplotlib.backends.backend_pdf.pdfRepr(obj)
[source]
Map Python objects to PDF syntax.
© 2012–2018 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.1.1/api/backend_pdf_api.html