How to create app icons easy using Sips
One of the daunting things when it comes to publishing apps is to create app icons. We have almost 18 app icons needs to be generated for a single app.
If you ask me most of the graphic designers hate this job.
Luckily apple have provided a tool with Mac OS X since the release of Mac OS X 13.3 which most of us don’t know about.
It’s called Sips.
This is a very easy to use straightforward tool but works only on the terminal. Using this tool you only need the high resolution 1024x1024px image to generate all the other icons.
sips app_icon_1024x1024.png -z 40 40 --out app_icon_40x40.png
You can replace 40 40 for any height and width to generate different icons. Example :
sips app_icon_1024x1024.png -z 60 60 --out app_icon_60x60.png
sips app_icon_1024x1024.png -z 58 58 --out app_icon_58x58.png
So next time if you want to generate app icons you can use this tool to make your life easy :)
Comments
Post a Comment