Can anyone suggest what might be going on here?
Code:
private function addWaterMark($fileIn) {
$stamp = imagecreatefrompng(WATERMARK_IMG);
$im = imagecreatefrompng($fileIn);
$marge_right = 10;
$marge_bottom = 10;
$sx = imagesx($stamp);
$sy = imagesy($stamp);
Leave a comment: