Is there something wrong with this from a fresh IDL session:
IDL> print, !version { x86_64 Win32 Windows Microsoft Windows 8.1 Mar 9 2011 64 64} IDL> set_plot, 'ps' IDL> print, !d.x_size, !d.y_size -2147483648 -2147483648
Should I be expecting something, uh, more reasonable?
Cheers,
David
-- David Fanning, Ph.D. Fanning Software Consulting, Inc. Coyote's Guide to IDL Programming: http://www.dfanning.com/ Sepore ma de ni thue. ("Perhaps thos speakest truth.")
> Is there something wrong with this from a fresh IDL session:
> IDL> print, !version > { x86_64 Win32 Windows Microsoft Windows 8.1 Mar 9 2011 64 64} > IDL> set_plot, 'ps' > IDL> print, !d.x_size, !d.y_size > -2147483648 -2147483648
> Should I be expecting something, uh, more reasonable?
> Cheers,
> David
> -- > David Fanning, Ph.D. > Fanning Software Consulting, Inc. > Coyote's Guide to IDL Programming:http://www.dfanning.com/ > Sepore ma de ni thue. ("Perhaps thos speakest truth.")
Seems OK for me
set_plot,'ps' { x86 Win32 Windows Microsoft Windows 8.1 Mar 9 2011 32 64} print,!d.x_size, !d.y_size 17780 12700
> set_plot,'ps' > { x86 Win32 Windows Microsoft Windows 8.1 Mar 9 2011 32 64} > print,!d.x_size, !d.y_size > 17780 12700
Yep, my fault. It seems .Full_Reset doesn't clear this setting in PostScript. I needed to completely exit IDL.
Cheers,
David
-- David Fanning, Ph.D. Fanning Software Consulting, Inc. Coyote's Guide to IDL Programming: http://www.dfanning.com/ Sepore ma de ni thue. ("Perhaps thos speakest truth.")