volatileboy Posted May 9, 2008 Share Posted May 9, 2008 Hey there, I just have a quick question, I looked through all the image related functions but could not find one that I think suits what I need. I am looking to make 1 large image from lots of small ones, each image is 20x20 and I want to bind for example 25 together to make a single 100x100 image, is there a way in php to perform this kind of task? Thanks in advance! Link to comment https://forums.phpfreaks.com/topic/104876-solved-image-creation/ Share on other sites More sharing options...
GingerRobot Posted May 9, 2008 Share Posted May 9, 2008 Use imagecopy() or, if you need any transparency effects, use imagecopymerge() Basically the idea would be to create an image of the desired size, then use the above functions to copy the smaller images onto the large image. I suspect this wouldn't be overly quick, however. Link to comment https://forums.phpfreaks.com/topic/104876-solved-image-creation/#findComment-536789 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.