|
From: cwurld <cw...@ya...> - 2010-01-27 03:12:28
|
Another way to solve this problem is to not use the figsize keyword when creating the Figure. Instead only adjust the dpi. For example: w,h=fig.get_size_inches() target_width_pix=300 dpi=target_width_pix/w canvas.print_figure(fname1,dpi=dpi) -- View this message in context: http://old.nabble.com/png-is-clipped-tp27327004p27333529.html Sent from the matplotlib - users mailing list archive at Nabble.com. |