Image optimization
Posted: Thu Oct 17, 2019 12:12 pm
If anyone is interested in reducing the file size of JPG & PNG files give https://tinypng.com/ a shot.
It works well for me.
It works well for me.
Support for MX and antiX Linux distros
http://www.forum.mxlinux.org/
Every time you upload picture somewhere, that company usually takes ownership of it. Plus they get some info about you, they can resell. I always first strip metadata from any picture I'm sending it by email and I never upload it to any service.colin_b wrote: Thu Oct 17, 2019 12:12 pm If anyone is interested in reducing the file size of JPG & PNG files give https://tinypng.com/ a shot.
It works well for me.
Code: Select all
exiftool -all= -overwrite_original * .
Code: Select all
for file in *.*; do convert $file -quality 10 compressed-$file; done
Code: Select all
mkdir compressed-jpegoptim
jpegoptim -d ./compressed-jpegoptim -p -m80 *.jpg | xargs -P 4