Jump to content

[SOLVED] image creation


volatileboy

Recommended Posts

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

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.