bradgrafelman;10946380 wrote:
While I haven't personally worked with watermarking, I believe there are examples in the PHP manual - most likely in one of the user comments. Either search the online documentation or just do a Google search (e.g. "php watermark image") and I'm sure you'll find some examples.
It is good PHP provide a lot of built-in function to do image operation but when things start to get tough like say water-marking, it maybe time to turn to other software which excel in image operation. Try ImageMagick! Install and learn the command line option which include doing the water-marking feature.
Then from PHP, we can use the system command to call the ImageMagick convert <option> to do the water-marking for us.
We got to be realistic, PHP nor Perl nor C nor Java can give us all the possible APIs for us, we just got to make use of each other to achieve our objectives. In this case PHP call ImageMagick to do water-marking.
Thanks.