重复水印 php

Repeating watermark php

我在一个项目中使用 Intervention Image 图像处理库这个库,我一直坚持在整个源图像上添加水印图像。

是否可以像下面的示例那样在整个源图像上重复水印图像?

我尝试了以下代码,但它对我不起作用。

$thumbnail = $manager->make($name);
$watermark = $manager->make($watermarkSource);
$x = 0;

while ($x < $thumbnail->width()) {
    $y = 0;

    while($y < $thumbnail->height()) {
        $thumbnail->insert($watermarkSource, 'top-left', $x, $y);
        $y += $watermark->height();
    }

    $x += $watermark->width();
}

$thumbnail->save($name, 80);

我刚刚通过在 Laravel 框架中使用干预图像库解决了这个问题。所以这是代码片段。

public function watermarkPhoto(String $originalFilePath,String $filePath2Save ){

    $watermark_path='photos/watermark.png';
    if(\File::exists($watermark_path)){

        $watermarkImg=Image::make($watermark_path);
        $img=Image::make($originalFilePath);
        $wmarkWidth=$watermarkImg->width();
        $wmarkHeight=$watermarkImg->height();

        $imgWidth=$img->width();
        $imgHeight=$img->height();

        $x=0;
        $y=0;
        while($y<=$imgHeight){
            $img->insert($watermark_path,'top-left',$x,$y);
            $x+=$wmarkWidth;
            if($x>=$imgWidth){
                $x=0;
                $y+=$wmarkHeight;
            }
        }
        $img->save($filePath2Save);

        $watermarkImg->destroy();
        $img->destroy(); //  to free memory in case you have a lot of images to be processed
    }
    return $filePath2Save;
}

如果您使用 7 之前的 PHP 版本,请从函数参数中删除 String 类型声明。做到这一点

    public function watermarkPhoto($originalFilePath, $filePath2Save ){....}

此外,如果您没有使用 Laravel 框架并且您没有包含文件 class,只需从函数中删除冗余和检查。

      if(\File::exists($watermark_path))

所以最简单的与框架无关的函数是:

function watermarkPhoto($originalFilePath, $filePath2Save ){

        $watermark_path='photos/watermark.png';
        $watermarkImg=Image::make($watermark_path);
        $img=Image::make($originalFilePath);
        $wmarkWidth=$watermarkImg->width();
        $wmarkHeight=$watermarkImg->height();

        $imgWidth=$img->width();
        $imgHeight=$img->height();

        $x=0;
        $y=0;
        while($y<=$imgHeight){
            $img->insert($watermark_path,'top-left',$x,$y);
            $x+=$wmarkWidth;
            if($x>=$imgWidth){
                $x=0;
                $y+=$wmarkHeight;
            }
        }
        $img->save($filePath2Save);

        $watermarkImg->destroy();
        $img->destroy();

    return $filePath2Save;
}

还需要透明背景的png格式水印图片。