abbotton/ios-png-parser

A PHP-based tool for parsing IOS application icons in IPA files

v1.0.1 2021-02-20 00:21 UTC

This package is auto-updated.

Last update: 2024-04-20 07:19:35 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);

Enjoy