<div dir="ltr">Hi all,<div><br></div><div>I certainly appreciate Sudipta&#39;s participation here, but this would not work:</div><div><br></div><div><span class="im" style="font-size:13px">wks = gsn_open_wks(wks_type,&quot;test&quot;)         <br></span><span class="im" style="font-size:13px">  wks@wkWidth = 2500<br>  wks@wkHeight = 2500</span><br></div><div><span class="im" style="font-size:13px"><br></span></div><div><font color="#000000">For various esoteric reasons, the resources have to specified at the time the workstation is created, and the correct form is (oddly enough), what Kerwyn originally had:</font></div><div><font color="#000000"><br></font></div><div><div style="font-size:13px"><div><div>wks_type = &quot;png&quot;<br></div>wks_type@wkWidth = 2500<br></div>wks_type@wkHeight = 2500<br></div><span style="font-size:13px">wks = gsn_open_wks(wks_type, &quot;test&quot;)</span><font color="#000000"><br></font></div><div><span style="font-size:13px"><br></span></div><div><span style="font-size:13px">However, the error messages being reported do not make sense in this context, and I agree with Sudipta that there must be something else going on on the script, and perhaps the whole thing could be posted.</span></div><div><span style="font-size:13px"><br></span></div><div><span style="font-size:13px">Here&#39;s a simple script from our examples that demonstrates this:</span></div><div><span style="font-size:13px"><br></span></div><div><p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)">begin</p>
<p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)">  a = addfile(&quot;$NCARG_ROOT/lib/ncarg/data/cdf/<a href="http://uv300.nc">uv300.nc</a>&quot;,&quot;r&quot;)<br></p>
<p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)">  u = a-&gt;U(0,:,:)</p>
<p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)"><br></p><p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)">  wks_type = &quot;png&quot;<br></p>
<p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)">  wks_type@wkWidth = 2500</p>
<p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)">  wks_type@wkHeight = 2500</p>
<p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)">  wks = gsn_open_wks(wks_type,&quot;gsn_xy&quot;)   </p>
<p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156);min-height:15px">  ;;These do not work; uncomment and comment out the wks_type@ versions above to demonstrate</p><p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156);min-height:15px">  ;wks@wkWidth = 2500</p><p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156);min-height:15px">  ;wks@wkHeight = 2500</p>
<p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)"><br></p><p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)">  res                        = True                        ; plot mods desired</p>
<p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)">  res@tiYAxisString          = u@long_name + &quot; &quot;+u@units   ; add units to title </p>
<p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)">  res@tiMainString          = &quot;Example of gsn_y&quot;      ; title</p>
<p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)">  plot=gsn_y(wks,u(:,30),res)</p>
<p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156);min-height:15px"><br></p>
<p style="margin:0px;font-size:13px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,156)">end</p></div><div><br></div><div>Hope this helps...</div><div>Rick</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 16, 2016 at 3:17 PM, sudipta sarkar <span dir="ltr">&lt;<a href="mailto:sdptsarkar2@gmail.com" target="_blank">sdptsarkar2@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">I am sure you are doing something else wrong in the rest of the code. Please post the rest of the code. I just tried this and it works fine. Also what version of ncl are you using. <div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 16, 2016 at 5:12 PM, Kerwyn Texeira <span dir="ltr">&lt;<a href="mailto:ktish86@gmail.com" target="_blank">ktish86@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div>Sorry again, but when I did exactly that, the same error showed up.  I attached the figure for you to see how small it is.<br><br></div>Script;<br><br>wks_type = &quot;png&quot; <br><span class=""><span>  wks = gsn_open_wks(wks_type,&quot;test&quot;)         <br></span></span><span class=""><span>  wks@wkWidth = 2500<br>  wks@wkHeight = 2500<br><br><br></span></span></div>Error again;<span class=""><span><br>warning:wkImageFileName is not a resource in the given object<br>warning:wkImageFormat is not a resource in the given object<br><br></span></span></div><span><font color="#888888">**Kerwyn<br><div><br><br></div></font></span></div><div><div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 16, 2016 at 2:00 PM, sudipta sarkar <span dir="ltr">&lt;<a href="mailto:sdptsarkar2@gmail.com" target="_blank">sdptsarkar2@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">See my other email that I sent to the general list. when you do:<div>wks_type = &quot;png&quot; </div><div>then the variable &quot;wks_type&quot; is just a string variable. </div><div>Its the variable &quot;wks&quot;  which is initiated as:</div><span class=""><span><div>wks = gsn_open_wks(wks_type,&quot;test&quot;)</div></span></span><div>that is the resource variable whose width and height can be set, </div><div><br></div><div>Hope its clear now. </div><div><br></div></div><div><div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 16, 2016 at 4:56 PM, Kerwyn Texeira <span dir="ltr">&lt;<a href="mailto:ktish86@gmail.com" target="_blank">ktish86@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div>Hi,<br><br></div>I don&#39;t thiking that I understand clearly.  When I state wks = True or wks = &quot;png&quot; and did as you stated wks.wkWidth = 250 and wks.wkHeight = 2500, I got the following errors again;<span class=""><span><br><br>warning:wkImageFileName is not a resource in the given object<br>warning:wkImageFormat is not a resource in the given object<br><br></span></span></div><span><font color="#888888">**Kerwyn<br></font></span></div><div><div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 16, 2016 at 1:43 PM, sudipta sarkar <span dir="ltr">&lt;<a href="mailto:sdptsarkar2@gmail.com" target="_blank">sdptsarkar2@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">You have to first initialize wks as you have done and then do the following:<div>Like wks.wkWidth = 2500</div><div>Wks.wkHeight =2500</div><div><div><div><br>On Wednesday, March 16, 2016, Kerwyn Texeira &lt;<a href="mailto:ktish86@gmail.com" target="_blank">ktish86@gmail.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div>Hi,<br><br></div>I did the following and I got the same error; <br><br></div>wkWidth = 2500<br><div>wkHeight = 2500<br></div><div><br></div><div>wks = gsn_open_wks(&quot;png&quot;, &quot;test&quot;)<br><br></div><span class=""><div>Error:warning:wkImageFileName is not a resource in the given object<br>warning:wkImageFormat is not a resource in the given object<br><br><br></div></span><div>I&#39;m not sure what is going on.<br><br></div><div>**Kerwyn<br></div><div><br></div><div><br></div></div><span class=""><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 16, 2016 at 1:28 PM, Sudipta Sarkar <span dir="ltr">&lt;<a>sdptsarkar2@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Kerwyn<br>
&quot;Wks_type&quot; is just a string. You have to resize using the variable &quot;wks&quot;. That&#39;s the one that is the resource variable<br>
<br>
Sent from my iPhone<br>
<div><div><br>
&gt; On Mar 16, 2016, at 4:25 PM, Kerwyn Texeira &lt;<a>ktish86@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Hi nc-talk,<br>
&gt;<br>
&gt; I trying to resize my figures in &quot;png&quot; format but I&#39;m having issues.  The size of the images are not changing.<br>
&gt;<br>
&gt; Script:<br>
&gt;<br>
&gt; wks_type = &quot;png&quot;<br>
&gt; wks_type@wkWidth = 2500<br>
&gt; wks_type@wkHeight = 2500<br>
&gt; wks = gsn_open_wks(wks_type, &quot;test&quot;)<br>
&gt;<br>
&gt; Error: warning:wkImageFileName is not a resource in the given object<br>
&gt;          warning:wkImageFormat is not a resource in the given object<br>
&gt;<br>
&gt; Does anyone know how I can fix this?<br>
&gt;<br>
&gt; Appreciate it much!<br>
&gt; **Kerwyn<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
</div></div>&gt; _______________________________________________<br>
&gt; ncl-talk mailing list<br>
&gt; <a>ncl-talk@ucar.edu</a><br>
&gt; List instructions, subscriber options, unsubscribe:<br>
&gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
</blockquote></div><br></div>
</span></blockquote></div>
</div></div></blockquote></div><br></div>
</div></div></blockquote></div><br></div>
</div></div></blockquote></div><br></div>
</div></div></blockquote></div><br></div>
<br>_______________________________________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>