How to print a text on a image using PHP as watermark?

Hi, i am looking for some example code that help me to learn how to
print the text over a image as a water mark. Hoping for valuable
suggestions.

You can use GD which is built into php - can be a bit longwinded writing the code but once you have it is done.

As mentioned by @colshrapnel you can use Imagick which is a php API/class for Imagemagick which is built into later versions of php but may not be activated.

You can use Imagemagick with exec() - Imagemagick is an external program and most Linux setups have it installed but it might be a very old version.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.