With interactive backend (eg Tk)
The saved pdf is also of this size.
It becomes extreme with smaller figures:
This last I can see as a function of getting the tool bar to fit.
With Agg the saved figure is the size you ask for
f = pylab.figure(figsize = (7,10))
f.get_size_inches() -> array([ 7.175, 10.175])
The saved pdf is also of this size.
It becomes extreme with smaller figures:
f = pylab.figure(figsize = (1,1))
f.get_size_inches() -> array([ 3.275, 1.175])
This last I can see as a function of getting the tool bar to fit.
With Agg the saved figure is the size you ask for
Comments
Post a Comment