ImageCopyMerge appearing not to merge

elango87

New Member
ImageCopyMerge only appears to only process the bottom image?As a trial I am trying to overlay and offset a white and blue image\[code\]$dest = '../images/pictures/white.gif';$src = 'http://stackoverflow.com/questions/images/pictures/blue.gif';imagecopymerge($dest, $src, 12, 65, 0, 0, 175, 260, 50);imagegif($dest);imagedestroy($dest);imagedestroy($src);\[/code\]and then later in the HTML display the output\[code\]<img src="http://stackoverflow.com/questions/12817254/<?php echo($dest); ?>" />\[/code\]What am I doing wrong?
 
Back
Top