Hi there
I just wondered if there is any way using GD to insert a clickable button or some text into a image? It is possible to create images for buttons but what if you want a clickable button inside another image.
The following code puts a image inside another image but how how could I then make im2 clickable or is it just not possible? Any help would be very much appreciated!
Thanks
Chris
<?php
$im = ImageCreate(800,800);
$im_color = ImageColorAllocate($im, 0, 255, 0);
$im2 = ImageCreate(200,200);
$im_color2 = ImageColorAllocate($im2, 255, 0, 0);
// copy image into new resource
imagecopy($im, $im2, 0, 0, 0, 0, 60, 60 );
header ("Content-type: image/png");
ImagePNG($im);
?>