How can I compress PNG and JPG images by more than 50%?
Asked
Active
Viewed 1.4k times
1 Answers
13
There is a handy tool called mogrify
that enables to do all sort of batch operations with images.
How to reduce quality of photos:
- Put all of them in one directory.
- Make a backup of the directory.
- Open terminal in the folder (typically by pressing F4).
- Run command
mogrify -quality 60% *
(this will reduce quality of all .jpg, .jpeg, .png images listed in the folder)
Be aware that image files will be replaced by reduced one. Make a backup first just in case you reduced a quality too much.
You can look up more functionality that mogrify provide in man mogrify
.
To install mogrify, try sudo apt-get install -y imagemagick
.
Enjoy :)
sudo apt-get install imagemagick
– Kolappan N Jun 06 '20 at 15:45optipng
ref – Nam G VU Nov 10 '22 at 08:06zopfli
(in Ubuntu 20.04 repo). – Diagon Jul 05 '23 at 05:53