user2904422
user2904422

Reputation: 11

Color postscript in IDL

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?

Upvotes: 1

Views: 248

Answers (1)

Chris Torrence
Chris Torrence

Reputation: 452

Add /COLOR to your DEVICE call.

Upvotes: 2

Related Questions