📅  最后修改于: 2023-12-03 14:46:33.658000             🧑  作者: Mango
matplotlib.axes.Axes.get_agg_filter()
是Matplotlib库中Axes类的一个方法,用于获取渲染时使用的agg过滤器。
Axes.get_agg_filter()
获取到的agg过滤器。
Agg过滤器是一个指定类型的对象,用于处理Matplotlib图形中的渲染,通常用于优化图形绘制速度。此方法返回当前Axes对象使用的agg过滤器。
以下示例演示如何使用get_agg_filter()
方法获取agg过滤器:
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
print(ax.get_agg_filter())
输出:
RendererAgg(filter_flags=('aliasing', 'antialiased', 'contains', 'extents', 'offset_position', 'offsets', 'path_effects', 'pickradius', 'sketch', 'snap', 'subsample', 'transform', 'urls'))