Re: Changing default meaning of ImageSize -> Automatic
- To: mathgroup at smc.vnet.net
- Subject: [mg95078] Re: Changing default meaning of ImageSize -> Automatic
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Mon, 5 Jan 2009 03:29:47 -0500 (EST)
- References: <gjqa9f$3g0$1@smc.vnet.net>
Hi, try SetOptions[Plot, ImageSize -> 1000] In[5]:= Plot[Sin[x], {x, 0, 6 Pi}] // ImageDimensions Out[5]= {1000, 617} Regards Jens lehin.p at gmail.com wrote: > Hello, > I like the default behavior of the option ImageSize -> Automatic in > Graphics[] that results in automatic resizing of graphics according to > the option ImageSizeMultipliers. But the default size of any graphics > produced with this option is too small (360 pixels width) for me and I > am coerced to resize it by hand any time it is produced for making it > visible in detail. Is there a way to change this behavior and to force > Graphics[] with the option ImageSize -> Automatic produce an image > with (for example) 500 pixels width? > > In[1]:= Plot[Sin[x], {x, 0, 6 Pi}] // ImageDimensions > > Out[1]= {360, 213} >