Hello All -
I've got the need to display images on a client's site with a watermark which, of course, php can do.
Now, the question is: If I do this on the fly with each page request, what are the performance issues of (a) taking the image (b) watermarking the image (c) serving the newly watermarked image to the browser. it's true that there will only be one watermarked image per page request, but the image on each page is a rather large (700 x 400px) full color image.
Is the php and the GD library fast enough at this to not slow the page/image rendering process too dramatically?
If the good folks here think that this process would ***noticeably*** affect image rendering, I guess an alternative would be to write a script that would batch process a directory of images off line and save those images complete with the watermark for on-line use.
All opinions gratefully appreciated.
Neophyte