Re: Font differences between IDL 5.6 and IDL 6.0 [message #38243 is a reply to message #38241] |
Fri, 27 February 2004 07:44   |
Michael Wallace
Messages: 409 Registered: December 2003
|
Senior Member |
|
|
> Yes, IDL object graphics uses a completely new font library in
> IDL 6.0 than they did in IDL 5.6. Perhaps there is a trade-off in
> font size consistency with readability. I *greatly* prefer the
> readability of the new fonts and *desperately* would like them
> available in direct graphics, where they would be useful to
> the 95% of us who use object graphics only infrequently. :-)
While we're talking about fonts, why are fonts used in the Z buffer
bigger than fonts used in the 'X' device? Is there some magic to make
the Z buffer fonts appear the same as the 'X' fonts or vice versa?
; create a plot in 'X'
set_plot, 'X'
window, XSIZE=640, YSIZE=512
plot, findgen(11), TITLE='Title', XTITLE='Index', YTITLE='Value'
image1 = tvrd()
; create a plot in 'Z'
set_plot, 'Z'
device, SET_RESOLUTION=[640, 512]
plot, findgen(11), TITLE='Title', XTITLE='Index', YTITLE='Value'
image2 = tvrd()
; image1 and image2 are very different images! Why?
-Mike
|
|
|