abbotton / ios-png-parser
一个基于PHP的工具,用于解析IPA文件中的IOS应用程序图标
v1.0.1
2021-02-20 00:21 UTC
Requires
- php: >=5.6
This package is auto-updated.
Last update: 2024-09-20 08:20:51 UTC
README
一个基于PHP的工具,用于解析IPA文件中的IOS应用程序图标
安装
composer require abbotton/ios-png-parser
使用方法
use IosPngParser\Parser; $parser = new Parser(); $encryptedPngFile = "/data/wwwroot/example.com/encrypted.png"; $decryptedPngFile = '/data/wwwroot/example.com/decrypted.png'; $parser::fix($encryptedPngFile, $decryptedPngFile);