本文简要介绍 python 语言中 matplotlib.figure.Figure.set_size_inches
的用法。
-
以英寸为单位设置图形大小。
调用签名:
fig.set_size_inches(w, h) # OR fig.set_size_inches((w, h))
- 参数:
- w (浮点数,浮点数)或浮点数
-
以英寸为单位的宽度和高度(如果未将高度指定为单独的参数)或宽度。
- h 浮点数
-
高度以英寸为单位。
- forward 布尔值,默认值:真
-
如果
True
,画布大小会自动更新,例如,您可以从 shell 调整图形窗口的大小。
注意
要从像素转换为英寸,请除以
Figure.dpi
。
用法
set_size_inches(w, h=None, forward=True)
相关用法
- Python matplotlib Figure.savefig用法及代码示例
- Python matplotlib Figure.sticky_edges用法及代码示例
- Python matplotlib Figure.subplots用法及代码示例
- Python matplotlib Figure.add_axes用法及代码示例
- Python matplotlib Figure.figimage用法及代码示例
- Python matplotlib Figure.add_subplot用法及代码示例
- Python matplotlib Figure.legend用法及代码示例
- Python matplotlib Figure.colorbar用法及代码示例
- Python matplotlib Figure.add_gridspec用法及代码示例
- Python matplotlib Figure.align_ylabels用法及代码示例
- Python matplotlib Figure.align_xlabels用法及代码示例
- Python matplotlib FigureBase.subplots用法及代码示例
- Python matplotlib FigureBase.align_ylabels用法及代码示例
- Python matplotlib FigureBase.align_xlabels用法及代码示例
- Python matplotlib FigureBase.add_axes用法及代码示例
- Python matplotlib FigureMpl用法及代码示例
- Python matplotlib FigureBase.legend用法及代码示例
- Python matplotlib FigureCanvasBase.mpl_connect用法及代码示例
- Python matplotlib FigureBase.sticky_edges用法及代码示例
- Python matplotlib FigureCanvasBase.mpl_disconnect用法及代码示例
- Python matplotlib FigureBase.add_subplot用法及代码示例
- Python matplotlib FigureBase.colorbar用法及代码示例
- Python matplotlib FigureCanvasBase.new_timer用法及代码示例
- Python matplotlib FigureBase.add_gridspec用法及代码示例
- Python matplotlib FontManager用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib.figure.Figure.set_size_inches。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。