LoginSignup
2
1

More than 3 years have passed since last update.

jpgのqualityを確認する方法 [ImageMagick]

Posted at

目的

手元にあるjpgファイルが、qualityいくつで圧縮されたのかが知りたい!

環境

  • macOS High Sierra
  • homebrew がインストールされていること

手順

ImageMagick のインストール

$ brew install imagemagick

quality の確認

$ identify -format '%f:%Q\n' hoge.jpg

以下のように出力されます

hoge.jpg:85

%f (ファイルネーム), %Q (quality)以外に指定できるものはこちらを参照

参考

imagemagick 公式

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1