ImageMagick
Just found out about this neat tool called imagemagick. I’m using it to compress jpg images small webp images for use on this blog. Install it (in arch-based linux) using this command. sudo pacman -S imagemagick Then run magick image.jpg -resize 1600x -quality 75 image.webp to create a compressed version of the image. Here the max pixel width is set at 1600 px, and the quality is at 75 (moderate compression). ...