PHP script that reverses the iPhone PNG optimalisation by Peperzaken
You can use this script to reverse the optimalisation process that Apple uses. It seems to be compatible with all the optimalisations that Apple does. For more info check out our blog post.
<?php
// Include the class
include 'Peperzaken/Ios/DecodeImage.php';
// Initialize the class an set the source
$processor = new Peperzaken_Ios_DecodeImage('[email protected]');
// Process the image en write it to this path
$processor->decode('[email protected]');
?>
We'l be adding more documentation to the code as we build it in to our project.