Dear All,
how can i create a image which will have another image(existing) as background
regards, bvsureshbabu
Check this out:
http://www.php.net/manual/en/ref.image.php
You need GD compiled into PHP for most of these, particular creating images.
$im = imagecreatefromJPEG("url"); // open background // do your image functions here imageJPEG($im,"",100); // output your jpeg imagedestroy($im); // destroy your jpeg
imagecreatefromjpeg simply opens an existing jpeg and turns it into a GD image.