1.0.0 • Published 9 years ago

iphone-png v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

NPM version Build Status Dependency Status

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