I am using pylab in matplotlib to create a plot and save the plot to an image file. However, when I save the image using pylab.savefig( image_name ), I find tha
pylab.savefig( image_name )
I think you need to specify a different resolution when saving the figure to a file:
fig = matplotlib.pyplot.figure() # generate your plot fig.savefig("myfig.png",dpi=600)
Specifying a large dpi value should have a similar effect as maximizing the GUI window.