abbotton / ios-png-parser
A PHP-based tool for parsing IOS application icons in IPA files
Installs: 5 351
Dependents: 1
Suggesters: 0
Security: 0
Stars: 18
Watchers: 2
Forks: 4
Open Issues: 0
Requires
- php: >=5.6
This package is auto-updated.
Last update: 2024-10-20 08:33:01 UTC
README
A PHP-based tool for parsing IOS application icons in IPA files
Installation
composer require abbotton/ios-png-parser
Usage
use IosPngParser\Parser; $parser = new Parser(); $encryptedPngFile = "/data/wwwroot/example.com/encrypted.png"; $decryptedPngFile = '/data/wwwroot/example.com/decrypted.png'; $parser::fix($encryptedPngFile, $decryptedPngFile);