使用 GhostSCript 将 BMP 文件转换为另一种文件图像类型
Converting a BMP to another file image type using GhostSCript
我有一个 .bmp
图像文件,当我从 bitmap
:
转换时总是 returns 错误
gs -sDEVICE=png256 -o ./teste.png ./teste.bmp
Returns:
GPL Ghostscript 9.26 (2018-11-20)
Copyright (C) 2018 Artifex Software, Inc. All rights reserved.
This software comes with NO WARRANTY: see the file PUBLIC for details.
Error: /undefined in BM~
Operand stack:
Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 2045 1 3 %oparray_pop 2044 1 3 %oparray_pop 2025 1 3 %oparray_pop 1884 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval--
Dictionary stack:
--dict:970/1684(ro)(G)-- --dict:0/20(G)-- --dict:77/200(L)--
Current allocation mode is local
Current file position is 5
GPL Ghostscript 9.26: Unrecoverable error, exit code 1
所有输出尝试的错误 Error: /undefined in BM~
returns
Ghostscript 不处理 .bmp 文件,它接受 PDF 或 PostScript。您可以编写 PostScript 程序来放置 .bmp 图像(参见示例 viewgif.ps),但这根本不是一回事。
您需要一个图像处理应用程序,例如 ImageMagick,正如上面 Mark Setchell 所建议的那样。
我有一个 .bmp
图像文件,当我从 bitmap
:
gs -sDEVICE=png256 -o ./teste.png ./teste.bmp
Returns:
GPL Ghostscript 9.26 (2018-11-20)
Copyright (C) 2018 Artifex Software, Inc. All rights reserved.
This software comes with NO WARRANTY: see the file PUBLIC for details.
Error: /undefined in BM~
Operand stack:
Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 2045 1 3 %oparray_pop 2044 1 3 %oparray_pop 2025 1 3 %oparray_pop 1884 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval--
Dictionary stack:
--dict:970/1684(ro)(G)-- --dict:0/20(G)-- --dict:77/200(L)--
Current allocation mode is local
Current file position is 5
GPL Ghostscript 9.26: Unrecoverable error, exit code 1
所有输出尝试的错误 Error: /undefined in BM~
returns
Ghostscript 不处理 .bmp 文件,它接受 PDF 或 PostScript。您可以编写 PostScript 程序来放置 .bmp 图像(参见示例 viewgif.ps),但这根本不是一回事。
您需要一个图像处理应用程序,例如 ImageMagick,正如上面 Mark Setchell 所建议的那样。