I'm trying to add watermark to all the images in a directory, let's say www.example.com/private. Some of these images have massive resolutions, while others are relatively normal so at the moment my watermark is working fine for the smaller images. Even by centering the watermark, I'm still leaving desirable sections of the bigger images vulnerable to cropping.

So my question is how would I go about writing a php script to repeat the watermark throughout the image, both vertically and horizontally? I don't really know enough about back-end development except that I know it's required to provide adequate watermarking protection, so I've been looking around on google and could only find this http://www.regardadesign.co.uk/blog/post/php-image-manipulation/15, which doesn't work.

So far I've placed the following .htaccess file into the /private directory:

<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule \.(gif|jpeg|jpg|png)$ /admin/watermark.php [QSA,NC]
</ifModule>"

And this is the script in watermark.php file:

<?php
ini_set('memory_limit','200M');
$path = $_SERVER['DOCUMENT_ROOT'].$_SERVER['REQUEST_URI'];
$image = imagecreatefromstring(file_get_contents($path));
$w = imagesx($image);
$h = imagesy($image);
$watermark = imagecreatefrompng('watermark.png');
$ww = imagesx($watermark);
$wh = imagesy($watermark);
imagecopy($image, $watermark, (($w/2)-($ww/2)), (($h/2)-($wh/2)), 0, 0, $ww, $wh);
header('Content-type: image/jpeg');
imagejpeg($image);
imagedestroy($image);
imagedestroy($watermark);
exit();
?>
link|improve this question

80% accept rate
feedback

1 Answer

up vote 0 down vote accepted

This is happening because you are inserting the watermark only once. If you repeat the watermark along the image area it will do the trick.

Replace your imagecopy line for this:

$img_paste_x = 0;
while($img_paste_x < $w){
    $img_paste_y = 0;
    while($img_paste_y < $h){
        imagecopy($image, $watermark, $img_paste_x, $img_paste_y, 0, 0, $ww, $wh);
        $img_paste_y += $wh;
    }
    $img_paste_x += $ww;
}
link|improve this answer
I coudn't test this code right now, but I hope it works. – Vitor42 Sep 11 '11 at 16:09
No, unfortunately this didn't work, it's still only place one copy of the watermark in the center and it's now just a solid black rectangle instead of my watermark image. – Ben Sep 11 '11 at 16:49
Oh, the parameters were wrong. I think I fixed it. – Vitor42 Sep 11 '11 at 17:15
Yes this does repeat it and it's not a black rectangle anymore either. Although this is what I asked for, and you've scripted it approriately, on some images the watermark isn't showing, or at least isn't showing the whole watermark. Is there a way to get the center of the repeating watermark in the center of the image, or is that far too technical and impossible? – Ben Sep 11 '11 at 18:34
Isn't the watermark bigger than those images where it didn't work? – Vitor42 Sep 11 '11 at 22:22
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.