トーク:Webで使用する画像ファイルの最適化
提供:maruko2 Note.
for i in *.PNG ; do pngcrush -rem alla -brute -reduce -oldtimestamp "$i" "${i%.PNG}.png" ; done
#!/bin/sh
for i in *.PNG ; do
pngcrush -rem alla -brute -reduce -oldtimestamp "$i" "${i%.PNG}.png"
done
rm *.PNG