<div dir="ltr"><div>Hello,</div><div>I would like to plot contours in full page at a given size (1366 x 844),</div><div>with no margins, no white spaces, just the plot at this dimmension.</div><div>Is it possible, or do I have to use imagemaick or graphicsmagick to crop the output image ?<br></div><div>(I have disabled titles and labels.)</div><div><br></div><div> Here is the piece of code :</div><div><br></div><div>  waveheight = fin-&gt;HTSGW_P0_L1_GLL0</div><div>  delete(waveheight@long_name)</div><div>  delete(waveheight@units)</div><div><br></div><div>  wavedir    = fin-&gt;DIRPW_P0_L1_GLL0</div><div>  delete(wavedir@long_name)</div><div>  delete(wavedir@units)</div><div><br></div><div>  wks_type = &quot;png&quot;</div><div>  wks_type@wkWidth = 1366</div><div>  wks_type@wkHeight = 844</div><div>  wks  = gsn_open_wks(wks_type,outfile)</div><div>  </div><div>  vres                           = True<br></div><div>  vres@vcRefAnnoOn = False</div><div><br></div><div>  res  = True</div><div>  res@gsnMaximize     = True</div><div>  res@lbLabelBarOn    = False</div><div>  res@lbTitleOn            = False</div><div>  vres@lbLabelBarOn   = False</div><div>  vres@lbTitleOn           = False</div><div><br></div><div>  plot = gsn_csm_contour_map(wks,waveheight,res)</div><div>  plot_ov = gsn_csm_vector_scalar(wks, udir(:,:), vdir(:,:),waveheight,vres)</div><div><br></div><div>  overlay(plot,plot_ov)                  ; overlay the U-wind plot on the temperature plot</div><div><br></div><div>  draw(plot)                                  ; draw the temperature plot (with the U-wind plot overlaid)</div><div>  frame(wks)                                 ; advance the frame</div><div><br></div><div><br></div><div><br></div><div><br></div><div>You will can see what I can achieve in attachement.</div><div>Thank you in advance</div><div>Ross.</div></div>