Images

如何在gs中旋轉圖像

  • September 24, 2016

如何使用 ghostscript 旋轉圖像?我正在將 eps 視覺化到螢幕上。我正在使用命令:

gs image.eps

試試這種方式:

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

PS這個程式碼片段來自犀牛論壇的這篇文章

更現代的 Ghostscript

較新的 Ghostscript 版本配備了大大改進的eps2write設備。

gs -dSAFER -dBATCH -dNOPAUSE -sDEVICE=eps2write \
 -sOutputFile=output.eps \
 -c "<</Orientation 3>> setpagedevice" \
 -f input.eps

-dSAFER選項可確保安全,禁止輸入 Ghostscript 執行任意文件讀/寫操作。

引用自:https://unix.stackexchange.com/questions/58333