If anyone is interested in reducing the file size of JPG & PNG files give https://tinypng.com/ a shot.
It works well for me.
Image optimization
Re: Image optimization
I use trimage. Internet connections not require.
- Buck Fankers
- Posts: 770
- Joined: Sat Mar 10, 2018 8:06 pm
Re: Image optimization
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.
I created two thunar custom actions for this, first one removes/strips all info from pictures: (you need to install exiftool)
Code: Select all
exiftool -all= -overwrite_original * .
Code: Select all
for file in *.*; do convert $file -quality 10 compressed-$file; done
Re: Image optimization
Or
Jpegoptim (sample: to a folder, and with 4 cores here)
Jpegoptim (sample: to a folder, and with 4 cores here)
Code: Select all
mkdir compressed-jpegoptim
jpegoptim -d ./compressed-jpegoptim -p -m80 *.jpg | xargs -P 4
Pour les nouveaux utilisateurs: Alt+F1 pour le manuel, ou FAQS, MX MANUEL, et Conseils Debian - Info. système “quick-system-info-mx” (QSI) ... Ici: System: MX-19_x64 & antiX19_x32