01.
<?phpheader (
"Content-type: image/png"
);
02.
$imgpng
= imagecreatefrompng(
"image/รูป.png"
);
03.
$imgframe
= imagecreatefrompng(
"image/รูป.png"
);
04.
$img
= @imagecreate(100, 71);
05.
imagecopy(
$img
,
$imgframe
,0,0,0,0,100,100);
06.
imagecopy(
$img
,
$imgpng
,15,15,10,10,70,70);
07.
imagepng(
$img
);
08.
imagedestroy(
$img
);
09.
imagedestroy(
$imgpng
);
10.
?>