How to rotate an image in gs

ghostscriptimages

How can I rotate an image with ghostscript?
I am visualizing eps to screen.
I am using the command:

gs image.eps

Best Answer

try this way:

gs -dEPSCrop -c "<</Orientation 1>> setpagedevice" -f input.eps -c quit

P.S this code snippet come from this post in the rhinocerus forum.

Related Question