![]() |
VOOZH | about |
Matplotlib is a library in Python and it is numerical – mathematical extension for NumPy library. The Artist class contains Abstract base class for objects that render into a FigureCanvas. All visible elements in a figure are subclasses of Artist.
The get_window_extent() method in artist module of matplotlib library is used to return the axes bounding box in display space.
Syntax: Artist.get_window_extent(self)
Parameters: This method accepts the following parameters.
- renderer: This parameter is the RendererBase subclass.
Returns: This method return the figure bounding box in display space.
Below examples illustrate the matplotlib.artist.Artist.get_window_extent() function in matplotlib:
Example 1:
Output:
👁 ImageValue Return by get_window_extent(): Bbox(x0=0.0, y0=0.0, x1=0.0, y1=0.0)
Example 2: