I use code as below to plot graphs and save fig to png files, but all png files are not in the same size (width x height), how can I let all of them in the same size?
fig, ax = plt.subplots(nrows=1, ncols=1, figsize(20, 10))
fig.savefig('myImage.png', bbox_inches='tight', dpi=300)
The png files size (width x height) as below, does anyone help me?

figsizeinsubplots?