Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mitsu-ksgr/8b57df35fdda8cc11e3e68bdf5ff7951 to your computer and use it in GitHub Desktop.
Save mitsu-ksgr/8b57df35fdda8cc11e3e68bdf5ff7951 to your computer and use it in GitHub Desktop.
ImageMagickを使ってjpeg圧縮するメモ

ImageMagickを使ってjpeg圧縮

環境

圧縮

50%に圧縮
$ convert src.jpg -quality 50 dest.jpg
指定ディレクトリ下のjpg全部を50%に圧縮
$ mkdir dest
$ for f in src/*.jpg; {convert "$f" -quality 50 "dest/${f##*/}"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment