Skip to content

Instantly share code, notes, and snippets.

@tanihiro
Created July 29, 2013 09:05
Show Gist options
  • Save tanihiro/6103109 to your computer and use it in GitHub Desktop.
Save tanihiro/6103109 to your computer and use it in GitHub Desktop.
iOSのRetina用に用意された画像を、半分のサイズにリサイズしpngquantで圧縮するワンライナー
find . -name '*@2x.png' | awk -F '@2x' '{print "convert " $1 "@2x.png -resize 50% " $1 ".png && pngquant 64 " $1 "*.png && mv " $1 "@2x-fs8.png " $1 "@2x.png && mv " $1 "-fs8.png " $1 ".png"}' | sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment