| [ Web Proxy ] |
| Viewing: https://matplotlib.org/stable/api/_as_gen/../../devel/MEP/../../api/toolkits/../backend_ps_api.html | [Back] [Original] |
matplotlib.backends.backend_ps#A PostScript backend, which can produce both PostScript .ps and .eps.
alias of FigureCanvasPS
Bases: FigureCanvasBase
Render the Figure.
This method must walk the artist tree, even if no output is produced, because it triggers deferred work that users may want to access before saving output to disk. For example computing limits, auto-limits, and tick values.
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: RendererPDFPSBase
The renderer handles all the drawing primitives using a graphics context instance that controls the colors/styles.
Draw a series of Gouraud triangles.
GraphicsContextBaseThe graphics context.
Array of N (x, y) points for the triangles.
Array of N RGBA colors for each point of the triangles.
TransformAn affine transform to apply to the points.
Draw an RGBA image.
GraphicsContextBaseA 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.
numpy.uint8An array of RGBA pixels.
Affine2DBaseIf 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 translatingthe 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).
The base (fallback) implementation makes multiple calls to draw_path.
Backends may want to override this method in order to draw the marker
only once and reuse it multiple times.
Draw a Path instance using the given affine transform.
Draw a collection of paths.
Each path is first transformed by the corresponding entry in all_transforms (a list of (3, 3) matrices) and then by master_transform. They are then translated by the corresponding entry in offsets, which has been first transformed by offset_trans.
facecolors, edgecolors, linewidths, linestyles, antialiased and hatchcolors are lists that set the corresponding properties.
Added in version 3.11: Allow hatchcolors to be specified.
offset_position is unused now, but the argument is kept for backwards compatibility.
The base (fallback) implementation makes multiple calls to draw_path.
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 a TeX instance.
GraphicsContextBaseThe graphics context.
The x location of the text in display coords.
The y location of the text baseline in display coords.
The TeX text string.
FontPropertiesThe font properties.
The rotation angle in degrees anti-clockwise.
TextThe original text object to be rendered.
Draw a text instance.
GraphicsContextBaseThe graphics context.
The x location of the text in display coords.
The y location of the text baseline in display coords.
The text string.
FontPropertiesThe font properties.
The rotation angle in degrees anti-clockwise.
If True, use mathtext parser.
TextThe original text object to be rendered.
Notes
Notes for backend implementers:
RendererBase.draw_text also supports passing "TeX" to the ismath
parameter to use TeX rendering, but this is not required for actual
rendering backends, and indeed many builtin backends do not support
this. Rather, TeX rendering is provided by draw_tex.
Use ghostscript's pswrite or epswrite device to distill a file. This yields smaller files without illegal encapsulated postscript operators. The output is low-level, converting text to outlines.
Convert the postscript to encapsulated postscript. The bbox of the eps file will be replaced with the given bbox argument. If None, original bbox will be used.
Use ghostscript's ps2pdf and xpdf's/poppler's pdftops to distill a file. This yields smaller files without illegal encapsulated postscript operators. This distiller is preferred, generating high-level postscript output that treats text as text.
| Web Proxy Viewer | New URL | Original Page |