C:\Program Files\ImageMagick-6.8.0-Q16>convert dragon.gif'[64x64]' read_dragon.gif
convert.exe: unable to open image `dragon.gif'[64x64]'': No such file or directo
ry @ error/blob.c/OpenBlob/2638.
convert.exe: unable to open module file `C:\Program Files\ImageMagick-6.8.0-Q16\
modules\coders\IM_MOD_RL_GIF'[64X64]'_.dll': No such file or directory @ warning
/module.c/GetMagickModulePath/683.
convert.exe: no decode delegate for this image format `dragon.gif'[64x64]'' @ er
ror/constitute.c/ReadImage/550.
convert.exe: no images defined `read_dragon.gif' @ error/convert.c/ConvertImageC
ommand/3078.
但是,以下方法可以正常工作:
convert dragon.gif dragon.png
最佳答案
在常规的Unix shell中,单引号将被shell解析掉。我不确定Windows Shell是否会这样做。这样行吗?
convert dragon.gif[64x64] read_dragon.gif
或这个?
convert "dragon.gif[64x64]" read_dragon.gif