I am creating an image on the fly with php gd.
I would like to be able to merge 1 image over the top of my created image, but i need to repeat it across the whole width of the underlaying image.
In css this would be achieved using ‘repeat-x’… is this possible with GD?
sorry the notification went to spam! Yeas, i have since solved by running a for loop and repeating the bg img
As far as I remember there is no built-in function in GD to perform what you need(I might be wrong).
But it seems possible to do manually with function imagecopy.