Matplotlib.figure.Figure.get_window_extent() en Python

Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. El módulo de figura proporciona el artista de nivel superior, la figura, que contiene todos los elementos de la trama. Este módulo se utiliza para controlar el espaciado predeterminado de las subparcelas y el contenedor de nivel superior para todos los elementos de la parcela.

método matplotlib.figure.Figure.get_window_extent()

El módulo de figura del método get_window_extent() de la biblioteca matplotlib se usa para obtener el cuadro delimitador de figura en el espacio de visualización.

Sintaxis: get_window_extent(self, *args, **kwargs)

Parámetros: Este método no acepta ningún parámetro.

Devoluciones: este método devuelve el cuadro delimitador de la figura en el espacio de visualización.

Los siguientes ejemplos ilustran la función matplotlib.figure.Figure.get_window_extent() en matplotlib.figure:

Ejemplo 1:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
  
  
X = np.arange(-10, 10, 0.5)
Y = np.arange(-10, 10, 0.5)
U, V = np.meshgrid(X, Y)
     
fig, ax = plt.subplots()
  
ax.quiver(X, Y, U, V)
ax.invert_xaxis() 
  
w = fig.get_window_extent()
   
print("Value Return by get_window_extent():")
print(w)
    
fig.suptitle('matplotlib.figure.Figure.get_window_extent()\
 function Example', fontweight ="bold") 
  
plt.show()

Producción:

Value Return by get_window_extent():
TransformedBbox(
    Bbox(x0=0.0, y0=0.0, x1=6.4, y1=4.8),
    Affine2D(
        [[100.   0.   0.]
         [  0. 100.   0.]
         [  0.   0.   1.]]))

Ejemplo 2:

# Implementation of matplotlib function 
import numpy as np 
import matplotlib.pyplot as plt 
  
  
xx = np.random.rand(16, 30) 
      
fig, ax = plt.subplots() 
      
m = ax.pcolor(xx) 
m.set_zorder(-20) 
  
w = fig.get_window_extent()
   
print("Value Return by get_window_extent():")
print(w)
    
fig.suptitle('matplotlib.figure.Figure.get_window_extent()\
 function Example', fontweight ="bold") 
  
plt.show()

Producción:

Value Return by get_window_extent():
TransformedBbox(
    Bbox(x0=0.0, y0=0.0, x1=6.4, y1=4.8),
    Affine2D(
        [[100.   0.   0.]
         [  0. 100.   0.]
         [  0.   0.   1.]]))

Publicación traducida automáticamente

Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *