Reputation: 11198
I've created a script that adds a watermark on top of an existing image using PHP. That works all good. I am able to position it on the top left, bottom left, top right, bottom right and centered. I haven't been able to figure out how to repeat the watermark if I wanted to.
I would like to do a repeating watermark like this image:
The code:
function imagecopymerge_alpha($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h, $pct){
// creating a cut resource
$cut = imagecreatetruecolor($src_w, $src_h);
// copying relevant section from background to the cut resource
imagecopy($cut, $dst_im, 0, 0, $dst_x, $dst_y, $src_w, $src_h);
// copying relevant section from watermark to the cut resource
imagecopy($cut, $src_im, 0, 0, $src_x, $src_y, $src_w, $src_h);
// insert cut resource to destination image
imagecopymerge($dst_im, $cut, $dst_x, $dst_y, 0, 0, $src_w, $src_h, $pct);
}
$imagesource = $image['file_path'];
$watermarkPath = $settings['watermark'];
$filetype = substr($imagesource,strlen($imagesource)-4,4);
$filetype = strtolower($filetype);
$watermarkType = substr($watermarkPath,strlen($watermarkPath)-4,4);
$watermarkType = strtolower($watermarkType);
// Let's pretend that $watermark and $image are now GD resources.
$imagewidth = imagesx($image);
$imageheight = imagesy($image);
$watermarkwidth = imagesx($watermark);
$watermarkheight = imagesy($watermark);
switch ($settings['watermark_location'])
{
case "tl": //Top Left
$startwidth = 20;
$startheight = 20;
break;
case "bl": //Bottom Left
$startwidth = 20;
$startheight = (($imageheight - $watermarkheight) - 20);
break;
case "tr": //Top Right
$startwidth = (($imagewidth - $watermarkwidth) - 20);
$startheight = 20;
break;
case "br": //Bottom Right
$startwidth = (($imagewidth - $watermarkwidth) - 20);
$startheight = (($imageheight - $watermarkheight) - 20);
break;
case "middle": //Middle/center
$startwidth = (($imagewidth - $watermarkwidth) / 2);
$startheight = (($imageheight - $watermarkheight) / 2);
break;
case "repeat":
// not sure what to do here
break;
default:
$startwidth = (($imagewidth - $watermarkwidth) / 2);
$startheight = (($imageheight - $watermarkheight) / 2);
}
imagecopymerge_alpha($image, $watermark, $startwidth, $startheight, 0, 0, $watermarkwidth, $watermarkheight,$settings['watermark_opacity']);
imagejpeg($image,NULL,90);
imagedestroy($image);
imagedestroy($watermark);
Upvotes: 5
Views: 2609
Reputation: 656
I think the imagesettile
function could help:
http://php.net/manual/en/function.imagesettile.php
Look at the example on that page.
Upvotes: 1
Reputation: 2121
I don't entirely know how your script works, but can't you just repeat adding watermarks at fixed intervals until you have covered the entire width of the image?
Upvotes: 2