|
Getting Started with IDL: Images |
|
IDL automatically creates a window for displayed graphics if one does not already exist. You can use the WINDOW command to create new windows with custom sizes.
WINDOW,0,XSIZE=800,YSIZE=600
TV,MYIMAGE
![]() |
WDELETE
The WINDOW command above creates a new version of window number 0 that is 800 pixels wide (specified with the XSIZE keyword) and 500 pixels tall (specified with the YSIZE keyword).
IDL Online Help (March 06, 2007)