2

我正在尝试使用幽灵脚本将图像从 .jpg 转换为 .tiff。我已经执行了以下命令来做到这一点。

gs -q -dNOPAUSE -dBATCH -dSAFER -sDEVICE=tiffg3 -sOutputFile=sip.tiff -f sipchat.jpg 

但我收到了这个错误。

Error: /undefined in �����Exif
Operand stack:

Execution stack:
   %interp_exit   .runexec2   --nostringval--   --nostringval--   --nostringval--   2   %stopped_push   --nostringval--   --nostringval--   --nostringval--   false   1   %stopped_push   1894   1   3   %oparray_pop   1893   1   3   %oparray_pop   1877   1   3   %oparray_pop   1771   1   3   %oparray_pop   --nostringval--   %errorexec_pop   .runexec2   --nostringval--   --nostringval--   --nostringval--   2   %stopped_push   --nostringval--
Dictionary stack:
   --dict:1155/1684(ro)(G)--   --dict:0/20(G)--   --dict:77/200(L)--
Current allocation mode is local
Current file position is 11
GPL Ghostscript 9.04: Unrecoverable error, exit code 1

我的命令有什么问题?任何建议和指导将不胜感激。我必须使用幽灵脚本转换我的图像,因为如果我使用的是由其他工具转换的图像,则不被接受。
谢谢

4

2 回答 2

3

你为什么不直接使用 ImageMagick...?

convert rose.jpg rose.tiff
于 2012-07-24T07:28:15.887 回答
1

旧事,但无论如何。

我正在寻找一种将 JPG 转换为 Tesseract 的 TIFF 的方法,并偶然发现了这一点。

不能帮助自己,但你为什么要问“你为什么不只使用 imagemagick”?

AFAIK,imagemagick 在下面的某个地方使用 gs ......但无论如何,问题是关于 ghostscript,而不是 ImageMagick。

于 2015-10-07T00:07:18.027 回答