Created
July 29, 2013 09:05
-
-
Save tanihiro/6103109 to your computer and use it in GitHub Desktop.
iOSのRetina用に用意された画像を、半分のサイズにリサイズしpngquantで圧縮するワンライナー
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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