Adding Smaller Images to a Larger Image
Posted: Fri Oct 01, 2004 6:35 am
Hi All
I have created a script that simply take an existing image
and draws rectangles on the image according to x,y's via
.
What I need to to is, instead of drawing little rectangles I need to draw another image on the existing image (i.e icon.jpg).
If anyone could please assist, It would be greatly appreciated.
I have created a script that simply take an existing image
Code: Select all
$im = imagecreatefromjpeg("superdupermappyland.jpg");Code: Select all
imagefilledrectangle($im,$x-2,$y-2,$x+2,$y+2,$red);What I need to to is, instead of drawing little rectangles I need to draw another image on the existing image (i.e icon.jpg).
If anyone could please assist, It would be greatly appreciated.