Skip to content

Instantly share code, notes, and snippets.

@Alexnder
Created April 17, 2015 15:53
Show Gist options
  • Select an option

  • Save Alexnder/e95633077162ac306e37 to your computer and use it in GitHub Desktop.

Select an option

Save Alexnder/e95633077162ac306e37 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