如何在gs中旋转图像

如何在gs中旋转图像

如何使用 GhostScript 旋转图像?我正在将 eps 可视化到屏幕上。我正在使用命令:

gs image.eps

答案1

尝试这样:

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

PS此代码片段来自这个帖子在犀牛论坛。

答案2

更现代一点的 Ghostscript

较新的 Ghostscript 版本配备了经过大幅改进的eps2write设备。

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

-dSAFER选项可以保证安全,禁止输入 Ghostscript 执行任意文件读/写操作。

相关内容