How do I control the compression rate of mogrify?

16

3

I want to do something like

mogrify -format jpg *.png

However, I want to encode the jpg at a higher quality than the default. Is there a way to do this?

Matthew

Posted 2009-12-05T20:35:18.713

Reputation: 11 686

Answers

24

mogrify -format jpg -quality 100 *.png

According to the official documentation the quality parameter can be 1 - 100 and the effect varies depending on the resulting format.

  • For JPG output a value of 1 gives worst quality and highest compression; a value of 100 gives best quality and lowest compression.
  • For PNG files the quality parameter only changes the lossless compression strategies used, so the speed of compression and the resulting file size can be affected but image quality remains the same.

With any Linux command, you can enter

man [command]

To see the help page that list out the information and parameters available.

Zurahn

Posted 2009-12-05T20:35:18.713

Reputation: 782

Or you can avoid the terror of man by using bro. Install.

– Teque5 – 2016-10-14T17:17:41.640

1Or you can just Google it and read the SE answer for the specific parameter you're looking for, which is usually faster than scanning the man page for it. – joseph_morris – 2017-02-23T17:55:04.513

3Almost any Linux command. – Nathaniel – 2009-12-05T21:34:54.943