Image merge in php

<?php
$php=imagecreatefrompng("php.png");
$php2=imagecreatefrompng("php2.png");
imagecopymerge($php,$php2,0,0,0,0,256,256,60);
header('Content-type:image/png');
imagepng($php);
imagedestroy($php);
imagedestroy($php2);
?>

Image 1:


Image 2 :


Output :


Top