How do you create an image strip?

devongovett

New Member
Messages
33
Reaction score
0
Points
0
Hi,

I need to combine several images into a single image on the fly with php/gd. How would you do this? I need an output where each image is above the other, or a grid with one column and many rows.

Thanks for any suggestions.
 

ASPX.King

New Member
Messages
155
Reaction score
0
Points
0
just put in a whole bunch of (img) tags, maybe in a table with
Code:
border="0" cellpadding="0" cellspacing="0"
 

devongovett

New Member
Messages
33
Reaction score
0
Points
0
But I need to do it so that the output is an image with all of the images contained.
 

ASPX.King

New Member
Messages
155
Reaction score
0
Points
0
Okay, my suggestion was for doing it on the client end... I don't know PHP, so I can't help you with doing it on the server end.
 
Top