本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。