Skip to content

Instantly share code, notes, and snippets.

View Prometee's full-sized avatar
🎯
Focusing

Francis Hilaire Prometee

🎯
Focusing
View GitHub Profile
@Prometee
Prometee / iOSPNGNormalizer.php
Last active July 28, 2020 10:16 — forked from juban/iOSPNGNormalizer.php
Update script to fit the newest version of the initial python script
<?php
class iOSPNGNormalizer
{
public static function fix($filename, $destfilename = null)
{
try {
$handle = fopen($filename, "rb");
$oldPNG = fread($handle, filesize($filename));
fclose($handle);