hi
I want to create a table(contanines some tiny images gotten of a database randomly) and put in to a background(for examle 400*400 pixels), how can i do this?
how can i change it to one image that seems one image and non seperatable?
best regard
Last edited by onion2k on Sun Jun 01, 2008 9:37 am, edited 1 time in total.
Reason:There's no need to make your text bigger than normal.
It can be done very easily with imagecopy(). Create a 400*400 image using imagecreate() or imagecreatetruecolor(), then open the individual images using imagecreatefromjpg() (or imagecreatefromstring() if the actually image data is in the database), and copy them to the place you want them in the big image.