I want to be able to create an image that is made up of other images. I can't seem to find any func for this.
Any help is greatly appreciated.
🙂
how about outputting each image in a table? EX <table border=0> <tr> <td> <img src="....."> </td> <td> <img src="....."> </td> </tr> </table>
no, it has to be an image. thanks anyway
Check the PHP image (gd) functions. Create an image resource, open all your other images, do ImageCopy on each one, output.
Voila.