ImageMagickで霧がかかったような効果を表現するには、以下のコマンドを実行します。
rem 環境によって変えてね
set im=C:\Progra~1\ImageMagick-6.3.0-Q16
rem 半透明グラデーションを作成する
%im%\convert.exe -size 200x150 gradient:#ffffff-#000000 -matte -channel RGBA mask.png
rem 元画像と重ねあわせる
%im%\convert.exe -size 200x150 sample1.jpg -matte mask.png -compose screen -composite sample7.jpg
元画像(sample1.jpg)
処理した画像(sample7.jpg)
関連項目
ScriptomとImageMagickで画像と半透明グラデーションを重ねる (ScriptomとImageMagickで同様の処理)