Skip to content

Instantly share code, notes, and snippets.

@oti
Created June 9, 2015 05:39
Show Gist options
  • Save oti/a04f47e53394c750cab7 to your computer and use it in GitHub Desktop.
Save oti/a04f47e53394c750cab7 to your computer and use it in GitHub Desktop.
evenizer
#!/bin/sh
# 奇数ピクセルの画像でスプライト画像を生成するとretinaでズレるのでこれで偶数化する
# https://github.com/katapad/evenizer
#
# $ npm i -g evenizer
for file in `find . -name '*.png'`; do
evenizer -i ${file}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment