<br><font size=2 face="sans-serif">I was wondering if you would consider
adding options to the png terminal type. &nbsp;I added it to my local copy
(sans documentation) as follows:</font>
<br>
<br><font size=2 face="sans-serif">361c361</font>
<br><font size=2 face="sans-serif">&lt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
if (!($value =~ /^(pbm|gif|tgif|svg|(eps|png)(:? .*)?)$/)) {</font>
<br><font size=2 face="sans-serif">---</font>
<br><font size=2 face="sans-serif">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
if (!($value =~ /^(pbm|gif|tgif|png|svg|eps(:? .*)?)$/)) {</font>
<br><font size=2 face="sans-serif">391,392c391</font>
<br><font size=2 face="sans-serif">&lt; &nbsp; &nbsp; } elsif ($output_type
=~ /^png( .*)?$/) {</font>
<br><font size=2 face="sans-serif">&lt; &nbsp; &nbsp; &nbsp; my $options
= $1 || &quot;small&quot;;</font>
<br><font size=2 face="sans-serif">---</font>
<br><font size=2 face="sans-serif">&gt; &nbsp; &nbsp; } elsif ($output_type
eq &quot;png&quot;) {</font>
<br><font size=2 face="sans-serif">397c396</font>
<br><font size=2 face="sans-serif">&lt; &nbsp; &nbsp; &nbsp; print $handle
&quot;set terminal png $options\n&quot;;</font>
<br><font size=2 face="sans-serif">---</font>
<br><font size=2 face="sans-serif">&gt; &nbsp; &nbsp; &nbsp; print $handle
&quot;set terminal png small\n&quot;;</font>
<br><font size=2 face="sans-serif">450c449</font>
<br><font size=2 face="sans-serif">&lt; &nbsp; &nbsp; } elsif (defined
$output_file &amp;&amp; $output_type =~ /^(pbm|(eps|png)(?: .*)?|tgif)$/)
{</font>
<br><font size=2 face="sans-serif">---</font>
<br><font size=2 face="sans-serif">&gt; &nbsp; &nbsp; } elsif (defined
$output_file &amp;&amp; $output_type =~ /^(pbm|eps(?: .*)?|png|tgif)$/)
{</font>
<br>
<br><font size=2 face="sans-serif">The advantage is being able to set the
absolute size by setting the output type to 'png size 1000,600' versus
fiddling with ratios.</font>
<br>
<br><font size=2 face="sans-serif">Thanks,</font>
<br>
<br><font size=2 face="sans-serif">Daniel</font>
<br>