ImageMagick初心者です。
ImageMagickという画像変換ソフトを使って「BMP画像」を「4bit グレースケールPNG画像」に変換しようとと思っています。
変換する際に、コマンドプロンプトでコマンドを入力して、変換対象のファイルを指定しようとしたのですが、ファイル名に半角スペースが含まれていて、正しく実行できません。
変換対象:「Tombo village.bmp」
出力対象:「Test.png」
ファイル名を変更する以外に変換する方法はないでしょうか?
あと、ImageMagickで一度の操作で大量のファイルを変換するようなコマンドってありますか?
誰か教えてください!
■コマンドプロンプト実行結果■
C:\Users\[User Name]\Pictures\Folder>convert -colorspace gray -depth 4 Tombo village.bmp Test.png
convert.exe: unable to open image `Tombo': No such file or directory @ error/blob.c/OpenBlob/2641.
convert.exe: no decode delegate for this image format `Tombo' @ error/constitute.c/ReadImage/550.
convert.exe: unable to open image `village': No such file or directory @ error/blob.c/OpenBlob/2641.
convert.exe: no decode delegate for this image format `village' @ error/constitute.c/ReadImage/550.
convert.exe: unable to open image `letters.bmp': No such file or directory @ error/blob.c/OpenBlob/2641.
convert.exe: no images defined `Test.png' @ error/convert.c/ConvertImageCommand/3068.
-------------------------となります。
お礼
出来ました!ありがとうございました。