I'm just starting out with php, so I don't know how to program worth a damn. I would like a script that would add a copyright notice or something to an image when they open it. It would be great if anyone could help me with that.
You can use gd-library this way:
$im = @ImageCreateFromJPEG ("image.jpg"); $white =imagecolorclosest ( $im, 255, 255, 255); $font = 2; $x = 10; $y = 10; imagestring ( $im, $font, $x, $y, "Your text", $white); imageJPEG($im);