VOOZH about

URL: https://www.geeksforgeeks.org/python/matplotlib-artist-artist-get_window_extent-in-python/

⇱ Matplotlib.artist.Artist.get_window_extent() in Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Matplotlib.artist.Artist.get_window_extent() in Python

Last Updated : 12 Jul, 2025

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.

Matplotlib.artist.Artist.get_window_extent() Method

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:

👁 Image
Value Return by get_window_extent():
Bbox(x0=0.0, y0=0.0, x1=0.0, y1=0.0)

Example 2:

Output:

👁 Image
Value Return by get_window_extent():
Bbox(x0=0.0, y0=0.0, x1=0.0, y1=0.0)
Comment