简体   繁体   English

如何使用GD和PHP重复水印图像?

[英]How do I repeat a watermark image with GD and PHP?

I've created a script that adds a watermark on top of an existing image using PHP. 我创建了一个脚本,使用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);               

我不完全知道你的脚本是如何工作的,但是你不能只是以固定的间隔重复添加水印,直到你覆盖整个图像的宽度为止?

I think the imagesettile function could help: 我认为imagesettile功能可以帮助:

http://php.net/manual/en/function.imagesettile.php http://php.net/manual/en/function.imagesettile.php

Look at the example on that page. 查看该页面上的示例。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM