I know it is possible to set a background using the GD library when creating an image, though my question is as I have not been able to find the method if there is one, how can I add multiple images to 1 image I am manipulating?
Example..
I am currently using this to set the background
$image = imagecreatefromjpeg("background.jpg");
Though I would like to overlay another image on top of it much like I do with the text. Can the same imagestring function be used for this because it doesn't seem to work for me.
Thanks!