[PHP] Creating watermarks

2007-08-04 Thread Tom Ray [Lists]
I've been learning how to use PHP with the GD Library and I've managed to learn quite a bit. I can upload, resize, create thumbnails and I'm even able to create security code images for forms. My question is how do I create a Watermark on the image? I want something transparent but still

Re: [PHP] Creating watermarks

2007-08-04 Thread Greg Donald
On 8/4/07, Tom Ray [Lists] [EMAIL PROTECTED] wrote: I've been learning how to use PHP with the GD Library and I've managed to learn quite a bit. I can upload, resize, create thumbnails and I'm even able to create security code images for forms. My question is how This is usually referred to as

RE: [PHP] Creating watermarks

2007-08-04 Thread Jan Reiter
PROTECTED] Sent: Saturday, August 04, 2007 5:32 PM To: php-general@lists.php.net Subject: [PHP] Creating watermarks I've been learning how to use PHP with the GD Library and I've managed to learn quite a bit. I can upload, resize, create thumbnails and I'm even able to create security code

Re: [PHP] Creating watermarks

2007-08-04 Thread GP INTERACTIVE
you can use also the following function : ?php // --- image play path $watermarkfile = 'images/play_small.png'; // as an example function getPictureMarked($sourcefile, $watermarkfile) { # # $sourcefile = Filename of the picture to be watermarked. # $watermarkfile = Filename

Re: [PHP] Creating watermarks

2007-08-04 Thread tedd
At 11:32 AM -0400 8/4/07, Tom Ray [Lists] wrote: I've been learning how to use PHP with the GD Library and I've managed to learn quite a bit. I can upload, resize, create thumbnails and I'm even able to create security code images for forms. My question is how do I create a Watermark on the

Re: [PHP] Creating watermarks

2007-08-04 Thread Tom Ray [Lists]
GP INTERACTIVE wrote: you can use also the following function : ?php // --- image play path $watermarkfile = 'images/play_small.png'; // as an example function getPictureMarked($sourcefile, $watermarkfile) { # # $sourcefile = Filename of the picture to be watermarked.