( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ
<?php
include_once("resizePNG.php");
$img = "abstract.png"; // File image location
$newfilename = "thumb_image.png"; // New file name for thumb
$w = 100;
$h = 100;
$thumbnail = resize($img, $w, $h, $newfilename);
echo "<img src='".$thumbnail."'>";
?>