Imagemagick

ImageMagick 無法打開圖像和文件

  • October 12, 2012

我嘗試使用 imagemagick 將圖像轉換為縮略圖。一切正常,所以我會得到一個縮略圖。但是我在控制台上遇到了一些錯誤:

convert: unable to open image `module':  @ error/blob.c/OpenBlob/2489.
convert: unable to open image `*':  @ error/blob.c/OpenBlob/2489.
convert: unable to open file `*':  @ error/blob.c/FileToBlob/831.
convert: unable to open image `*':  @ error/blob.c/OpenBlob/2489.
convert: unable to open file `*':  @ error/blob.c/FileToBlob/831.
convert: unable to open image `*':  @ error/blob.c/OpenBlob/2489.
convert: unable to open file `*':  @ error/blob.c/FileToBlob/831.
convert: unable to open image `*':  @ error/blob.c/OpenBlob/2489.
convert: unable to open file `*':  @ error/blob.c/FileToBlob/831.
convert: unable to open image `*':  @ error/blob.c/OpenBlob/2489.
convert: unable to open file `*':  @ error/blob.c/FileToBlob/831.
convert: unable to open image `*':  @ error/blob.c/OpenBlob/2489.
convert: unable to open file `*':  @ error/blob.c/FileToBlob/831.
convert: unable to open image `*':  @ error/blob.c/OpenBlob/2489.
convert: unable to open file `*':  @ error/blob.c/FileToBlob/831.
convert: unable to open image `*':  @ error/blob.c/OpenBlob/2489.
convert: unable to open file `*':  @ error/blob.c/FileToBlob/831.

所有權限都設置正確。我在Google或其他地方找不到這樣的錯誤。我希望有人有一個想法:) 感謝您的幫助。

你需要給出你正在使用的命令。

很有可能,您已將 a*放在 a 中',因此您的命令應該是:

convert -opts ... *

並不是

convert -opts ... '*'

引用自:https://serverfault.com/questions/437732