How to make a big graphic window larger than Xwindows size? [message #44700] |
Wed, 13 July 2005 07:36  |
ismxray@yahoo.com
Messages: 13 Registered: January 2005
|
Junior Member |
|
|
Hi all,
Is there any way to make a large direct graphic window in IDL?
Each time I try to use
window,xsize=2000,ysize=2000
I always got a window litter bit than the screen size(1600x1200, ).
The window I can get is " 0: Win(1593,1117, Pixmap) "
The alternative question is how to make a large size figure in IDL?
Thanks very much!
Best wishes,
Charles
|
|
|
|
|
|
|
Re: How to make a big graphic window larger than Xwindows size? [message #44790 is a reply to message #44700] |
Wed, 13 July 2005 08:09   |
Michael Wallace
Messages: 409 Registered: December 2003
|
Senior Member |
|
|
ismxray@yahoo.com wrote:
> Hi all,
> Is there any way to make a large direct graphic window in IDL?
> Each time I try to use
> window,xsize=2000,ysize=2000
> I always got a window litter bit than the screen size(1600x1200, ).
> The window I can get is " 0: Win(1593,1117, Pixmap) "
> The alternative question is how to make a large size figure in IDL?
> Thanks very much!
Have you tried using the Z-buffer instead?
set_plot, 'Z'
device, set_resolution = [2000, 2000]
; do your plotting
image = TVRead() ; see [1]
write_image, filename, format, image
[1] You can find TVRead() in David Fanning's library. It's designed to
be a better replacement of IDL's tvrd().
-Mike
|
|
|
|
|