Re: [Matplotlib-users] Forcing the size of a figure

2011-08-15 Thread Stan West
From: David Just [mailto:just.da...@mayo.edu] Sent: Friday, August 12, 2011 11:05 Now that I'm pre-building all my enlarged interpolated images to scroll through, I'm having trouble forcing the figure/FigureCanvas to be the size I want. I'm trying: fig.set_size_inches(768 / 72.0, 768 / 72.0),

Re: [Matplotlib-users] Forcing the size of a figure

2011-08-14 Thread Goyo
Maybe you need to call fig.canvas.draw() to get the figura actually resized. 2011/8/12, Benjamin Root : > On Fri, Aug 12, 2011 at 10:04 AM, David Just wrote: > >> Now that I’m pre-building all my enlarged interpolated images to scroll >> through, I’m having trouble forcing the figure/FigureCan

Re: [Matplotlib-users] Forcing the size of a figure

2011-08-12 Thread Benjamin Root
On Fri, Aug 12, 2011 at 10:04 AM, David Just wrote: > Now that I’m pre-building all my enlarged interpolated images to scroll > through, I’m having trouble forcing the figure/FigureCanvas to be the size > I want. > > I’m trying: > fig.set_size_inches(768 / 72.0, 768 / 72.0), but it ends up the

[Matplotlib-users] Forcing the size of a figure

2011-08-12 Thread David Just
Now that I¹m pre-building all my enlarged interpolated images to scroll through, I¹m having trouble forcing the figure/FigureCanvas to be the size I want. I¹m trying: fig.set_size_inches(768 / 72.0, 768 / 72.0), but it ends up the same size as the default plot. Thanks, Dave ---