如何使用 GhostScript 旋转图像?我正在将 eps 可视化到屏幕上。我正在使用命令:
gs image.eps
答案1
答案2
更现代一点的 Ghostscript
较新的 Ghostscript 版本配备了经过大幅改进的eps2write
设备。
gs -dSAFER -dBATCH -dNOPAUSE -sDEVICE=eps2write \
-sOutputFile=output.eps \
-c "<</Orientation 3>> setpagedevice" \
-f input.eps
该-dSAFER
选项可以保证安全,禁止输入 Ghostscript 执行任意文件读/写操作。