I’d like to add one image to the bottom of another in php
I’ve this to load the images:
//load top
$top = @imagecreatefrompng($templateTop);
//load bottom
$bottom = @imagecreatefrompng($templateBottom);
Now I’d like to add them to one picture and display top and bottom together.
What way can I do this?
Thanks!
Use imagecopy: