iphone-png
v1.0.0
Published
Make png files extracted from .ipa file of iphone or ipad readable and openable.
Downloads
17
Maintainers
Readme
iphone-png
Make png files extracted from .ipa file of iphone or ipad readable and openable.
Mac OS X only for now, or you can help me to make it work on Windows.
Install
$ npm install iphone-png -g
After this, you will have a iphone-png
command in your Terminal.
Usage
CLI
iphone-png atlas-iphone.png atlas.png
# Then `atlas.png` will be recognized and opened in Photoshop.
npm module
$ npm install iphone-png -g
var crush = require('iphone-png');
crush(src, output, function(err){
if (err) {
console.error(err);
process.exit(1);
}
// If succeeded, the `output` file will be a normal png file that can be opened by photoshop.
});
License
MIT