question to write_tiff [message #10283] |
Fri, 14 November 1997 00:00 |
rew032
Messages: 14 Registered: July 1996
|
Junior Member |
|
|
Hello!
How can I make a colored picute with write_tiff...????
I tried to give this:
TVLCT, r, g, b, /GET
Pict = TVRD()
WRITE_TIFF, 'plottest.jpg', Pict, r, g, b
but errors appear... :((
Regards, Astrid
|
|
|
Re: question to write_tiff [message #10374 is a reply to message #10283] |
Fri, 14 November 1997 00:00  |
davidf
Messages: 2866 Registered: September 1996
|
Senior Member |
|
|
[This followup was also posted to comp.lang.idl-pvwave]
A.Kuhr (rew032@isr141.isr.kfa-juelich.de) writes:
> How can I make a colored picute with write_tiff...????
>
> I tried to give this:
>
> TVLCT, r, g, b, /GET
> Pict = TVRD()
> WRITE_TIFF, 'plottest.jpg', Pict, r, g, b
>
> but errors appear... :((
Try,
WRITE_TIFF, 'plottest.jpg', pict, Red=r, Green=g, Blue=b
^^^ ?!
Cheers,
David
-----------------------------------------------------------
David Fanning, Ph.D.
Fanning Software Consulting
E-Mail: davidf@dfanning.com
Phone: 970-221-0438
Coyote's Guide to IDL Programming: http://www.dfanning.com/
|
|
|