I’m looking for a way to add additional information to an image.
What I want to do is:
- Add a 300px wide by 40px high flat colour banner flush with the bottom left edge of the image.
- Add image text on top of this banner
Basically, I want to mark the image with a shape and text.
Are there any PHP Libraries or built-in PHP functionality I would need to get this done?!
Thanks in advance.
Both the GD extension and ImageMagick extension support these functions via their
imagefttext()andImagick::annotateImage()functions, respectively.