1

I've got some plots that I want to output as postscript files using IDL.

I have used the following:

SET_PLOT, 'PS' 
DEVICE, FILENAME = 'myplot.ps', /LANDSCAPE
PLOT, ...
DEVICE, /CLOSE

But this outputs in black and white only. How can I color postscript files?

1 Answers1

2

Add /COLOR to your DEVICE call.

Chris Torrence
  • 452
  • 3
  • 11