Watermarking / writing text over an image in PHP?

digitalpower

BANNED
Joined
Dec 16, 2008
Messages
303
Reaction score
70
Lets just say I wanted to put realistic looking text using a specific font and font size over an image. I know this is possible in .NET but is it possible in PHP? How would I go about doing this?
 
Lets just say I wanted to put realistic looking text using a specific font and font size over an image. I know this is possible in .NET but is it possible in PHP? How would I go about doing this?

You could use GD with php.
Code:
http://ca.php.net/gd

or you could use Imagemagick with php
Code:
http://in2.php.net/book.imagick

hope that helps
 
Back
Top