PHP has several built-in image manipulation functions. But I've looked over the help files and things, and it doesn't appear that you can stamp one image on top of another. For example, let's say I have background.png, logo1.png, and logo2.png. I want to use the same background, but depending on user input, I want to display it either with logo1 or logo2 "stamped" on top of it. Is there a way to do this, without using the "draw" functions to draw the logos pixel by pixel?

I appreciate the help, thanks in advance.

    Daniel,

    ImageCopy is what I use for this sort of thing (www.php.net/imagecopy).

    Rob

      Cool, thanks. Must've missed that one while I was searching the list.

        Write a Reply...