Matplotlib.axes.axes.get_window_extent() - 用于返回按显示间隔排列的Axes边框

Matplotlib.axes.axes.get_window_extent()

Matplotlib是Python中的一个库,它是NumPy库的数值-数学扩展。Axes包含了大多数图形元素:Axis、Tick、Line2D、Text、Polygon等,并设置坐标系。Axes的实例通过callbacks属性支持回调。

Matplotlib.axes.axes.get_window_extent() 函数

matplotlib库的Axes模块中的Axes.get_window_extent()函数用于返回按显示间隔排列的Axes边框。

Axes.get_window_extent(self, *args, **kwargs)

这里,args和kwargs是空的。

参数:该方法不接受任何参数。

返回:该方法返回显示空间中的坐标轴边界框。

下面的例子演示了matplotlib.axes.axes.get_window_extent()函数在matplotlib.axes中的作用:

示例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 = ax.get_window_extent()
print(str(w))
  
fig.suptitle('matplotlib.axes.Axes.get_window_extent()\
 function Example', fontweight ="bold")
 
plt.show()

输出:

Matplotlib.axes.axes.get_window_extent()

TransformedBbox(
    Bbox(x0=0.125, y0=0.10999999999999999, x1=0.9, y1=0.88),
    BboxTransformTo(
        TransformedBbox(
            Bbox(x0=0.0, y0=0.0, x1=6.4, y1=4.8),
            Affine2D(
                [[100.   0.   0.]
                 [  0. 100.   0.]
                 [  0.   0.   1.]]))))

示例2

# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
   
 
xx = np.random.rand(16, 30)
   
fig, ax3 = plt.subplots()
   
m = ax3.pcolor(xx)
m.set_zorder(-20)
w = ax3.get_window_extent()
print(str(w))
  
fig.suptitle('matplotlib.axes.Axes.get_window_extent() \
function Example', fontweight ="bold")
 
plt.show()

输出:

Matplotlib.axes.axes.get_window_extent()

TransformedBbox(
    Bbox(x0=0.125, y0=0.10999999999999999, x1=0.9, y1=0.88),
    BboxTransformTo(
        TransformedBbox(
            Bbox(x0=0.0, y0=0.0, x1=6.4, y1=4.8),
            Affine2D(
                [[100.   0.   0.]
                 [  0. 100.   0.]
                 [  0.   0.   1.]]))))

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

matplotlib.axes