<?php
$rd=imagecreatefromjpeg('testing.jpg');
$rs=imagecreatefrompng('watermark.png');
imagecopyresized($rd,
$rs,
0, // destination X
0, // destination Y
0, // source X
0, // source Y
100, // destination width
100, // destination height
imagesx($rs), // source width
imagesy($rs));
imagejpeg($rd,'testing8.jpg');
?>
<?php
$rd=imagecreatefromjpeg('testing.jpg');
$rs=imagecreatefrompng('watermark.png');
imagecopyresized($rd,
$rs,
0, // destination X
0, // destination Y
0, // source X
0, // source Y
100, // destination width
100, // destination height
imagesx($rs), // source width
imagesy($rs));
imagejpeg($rd,'testing8.jpg');
?>