I'd like to open a matplotlib figure maximized and I'd like to get the size of the figure in inches. This yields the same value no matter if the figure is maximized or not:
import matplotlib.pyplot as plt
# figManager = plt.get_current_fig_manager()
# figManager.window.showMaximized()
fig = plt.gcf()
height = fig.get_size_inches()[1]
print(height)
4.8
Any hints?
figManagerlines, right? Any idea what the issue might be?