I want to be able to add a personalised URL, and individual's name to a generic Facebook cover design
I want to create a personalised FB cover for my many users
How do I do this? Thanks
If you are trying to simply write text to an image, you can use PHP's lib image magick.
For instance, you can try this function on an image object:
bool Imagick::annotateImage ( ImagickDraw $draw_settings , float $x , float $y , float $angle , string $text )
As you can see it takes some settings (color I guess), the position, an angle and a string and prints the text into the image given the other parameters.
More information about the method can be found here. How to use image magick, here. AFAIR you needed to add the plugin to your php config file and then just require it on the code. Then you need to convert your jpg file to an image magick's image object; use readImage function:
bool Imagick::readImage ( string $filename )
Or something along those lines. And finally add the text and save (there shoudl be a writeImage as well). Shouldn't be too complicated if you have the right tools.