I'll start here because PHP can do just about anything.
I'm looking for a way to merge images dynamically. Basically I have several small images 50x50 px that I want to create a banner by adding the images together to create 1 image 250x50 px.
If you have PHP's image functions available in your installation, PHP can do that.
Were I to try that, I would create a new blank image using imagecreatetruecolor(), then open the images I would want to merge to that blank image using imagecreatejpeg() to open the image files and imagecopy() to perform the copy.
Then I'd write the image to a file or the browser using imagejpeg().
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.