TiCons CLI
Command-line and CommonJS module version of TiCons to generate icons and splash screens (aka launch images) for Appcelerator Titanium & Alloy apps.
As global CLI:
[sudo] npm install -g ticons
As a dependency in your projects package.json
:
{
"name": "your-project",
"dependencies": {
"ticons": "*"
}
}
TiCons requires ImageMagick CLI tools to be installed. If you're on OS X you can use Homebrew:
brew install imagemagick
Quick Start
TiCons can be used both as CLI and CommonJS module.
CLI
Hit ticons -h
for full usage, but thanks to Smart Defaults this will work in most cases:
-
Detects if the CWD contains a classic or Alloy project, what platforms are targeted and then generates required icons using
iphone/iTunesArtwork@2x
as input:~/myproject $ ticons icons
-
Detects if the CWD contains a classic or Alloy project, what platforms are targeted, if the app is locked to one orientation and then generates required splashes using
iphone/Default@2x.png
as input. If Android is targetted, 9-Patch images will be generated and the requiredtheme.xml
created for you if missing.~/myproject ticons splashes
You can specify diferent input (ticons icons myIcon.png
) and options to override the defaults for fine-tune the results to your liking.
Module
For the module use the full option names as properties in the first argument. Specify a callback that accepts an error and result as the second argument.
var ticons = require('ticons');
ticons.icons({
input: 'icon.png',
outputDir: 'foo',
targets: ['ipad','android'],
classic: true
}, function (err, output) {
if (err) {
throw err;
}
console.log('generated files: ' + output.join(', '));
});
Smart defaults
If the outputDir
(or -d
or CWD if missing) contains a project, TiCons will figure out lots of smart defaults:
- If the project is classic instead of Alloy.
- What platforms are targetted (
<deployment-targets>
). - If the app is locked to one orientation (
UISupportedInterfaceOrientations
etc.).
In the CLI, you can add the trace
(-t
) option to see exactly what configuration is used based on your options and the smart defaults.
Splashes & 9-Patch
By default TiCons generated 9-Patch splashes for Android. You can disable this using --no-nine
(-n
) option and as an alternative disable cropping as well using --no-crop
(-c
) to contain and fill splash screen instead.
9-Patch best practice
Understand that TiCons will fit your input image inside the not-long-x
dimensions and then add 9-Patch black pixels to indicate that only the outer most line of pixels on each side should be stretched. For best results use a square image of 1600x1600 pixels that includes the minimal amount of padding, making sure that the outer most pixels are all of the same color.
The required platform/android/res/values/theme.xml
will be created if you don't have it already. Make sure the assets android
directory does not contain any old non-9-Patch splashes, because else they will take precendece.
Cropping best practice
For best results with 9-Patch disabled use a 2048x2048 image that has its main artwork in the center 1024x1024 pixels. Anything outside of that box might be cropped depending on the orientation and ratio of the target splashes.
Filling best practive
When cropping is disabled using --no-crop
(-c
) the input image will be resized to fit instead of cover the target dimension. The remaining area is then filled by stretching the outer most line of pixels on each side, basically simulating 9-Patch, but then for all platforms. For best results, see the best practice for 9-Patch and use 2048x2048 if you support iPad.
Locale
You can use the locale
(-l
) option to specify a 2-letter locale. Only splashes supporting locale paths will be generated when you use this option.
Fix or not to Fix
By default, some errors in the Appcelerator specs related to iOS and Android splash screen dimensions are fixed. Use -no-fix
to disable this.
Radius
If you use the iTunesArtwork@2x
as input for Android and other platforms icons, you might want to round the corners a bit as only iOS does this for you. Simply pass a percentage between 0
and 50
to --radius
(-r
). Seems like 18
is about what it was for iOS6.
Roadmap
Feel free to fork and contribute towards:
- Add generating general assets in various densities based on retina or xhdpi.
- Add generating HTML splash for Mobile Web.
- Install node.js.
- Install grunt:
[sudo] npm install -g grunt-cli
- Clone the repo:
git clone https://github.com/fokkezb/ticons-cli.git && cd ticons-cli && npm install
- Run tests:
grunt test
Issues
Please report issues and features requests in the repo's issue tracker.
License
Distributed under MIT License.