Skip to content

Instantly share code, notes, and snippets.

@opexxx
Forked from Alexnder/opt.md
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save opexxx/4eb9ce386b23959ea14a to your computer and use it in GitHub Desktop.

Select an option

Save opexxx/4eb9ce386b23959ea14a to your computer and use it in GitHub Desktop.

Оптимизация png без потерь

apt-get install pngcrush

for file in *.png ; do pngcrush -reduce -brute -rem alla -rem gAMA -rem cHRM -rem iCCP -rem sRGB "$file" "${file%.png}-crushed.png" && mv "${file%.png}-crushed.png" "$file" ; done

Оптимизация jpg без потерь

apt-get install jpegoptim

jpegoptim *.jpg --strip-all

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment