imagemagick の mogrify コマンド。たまにしか使わないためコマンド名を忘れるので、愛用している vifm にコマンド登録した。
imagemagick’s mogrify command. Since I only use it occasionally, I forget the command name, so I registered the command in my favorite vifm.
vifmrc
command! jpg mogrify -format jpg -quality 90 %a %f
command! jpgr mogrify -format jpg -quality 90 -resize 2048x2048 %a %f
ファイルを選択した状態で、:jpg
または :jpgr
で実行できる。便利。
With the file selected, you can run it with :jpg
or :jpgr
. convenience.
しかも :jpg -resize 800x800
といった引数も指定できる。便利だ。
Moreover, you can also specify arguments such as :jpg -resize 800x800
. It’s so convenient.
コメント