Re: [PHP] Creating watermarks

2007-08-04 Thread Tom Ray [Lists]
GP INTERACTIVE wrote: you can use also the following function : function getPictureMarked($sourcefile, $watermarkfile) { # # $sourcefile = Filename of the picture to be watermarked. # $watermarkfile = Filename of the 24-bit PNG watermark file. # //Get the resource

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 i

Re: [PHP] Creating watermarks

2007-08-04 Thread GP INTERACTIVE
you can use also the following function : Regards, Greg http://www.psmdev.com 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

RE: [PHP] Creating watermarks

2007-08-04 Thread Jan Reiter
Hi! Try using imagealphablending() to blend your logo onto the original image. This function should not require the user browser to be capable of blending functions as would using the alpha channel of a png inmage or such ... Jan -Original Message- From: Tom Ray [Lists] [mailto:[EMAIL

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