如何使用 GD 和 PHP 重复水印图像?
Posted
技术标签:
【中文标题】如何使用 GD 和 PHP 重复水印图像?【英文标题】:How do I repeat a watermark image with GD and PHP? 【发布时间】:2012-02-13 23:10:02 【问题描述】:我创建了一个脚本,它使用 php 在现有图像上添加水印。这一切都很好。我可以将它定位在左上角、左下角、右上角、右下角和居中。如果我想的话,我还没弄清楚如何重复水印。
我想做一个像这张图片一样的重复水印:
代码:
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);
【问题讨论】:
如何发布您的代码。只是一个猜测,但这可能会有所帮助。 我们绝对需要查看您已经在使用的代码,以便我们可以为您提供有关如何使水印重复的建议。 发布了一个小贴士..它有很多代码..只需关注开关盒大约 70 行 代码并没有你想象的那么多。我已经内嵌了相关部分。 我在这里找到了答案:***.com/questions/7333077/… 【参考方案1】:我不完全知道你的脚本是如何工作的,但你不能按固定的时间间隔重复添加水印,直到你覆盖了图像的整个宽度吗?
【讨论】:
这似乎不太有效,但我想这是一个选择【参考方案2】:我认为imagesettile
函数可以提供帮助:
http://php.net/manual/en/function.imagesettile.php
查看该页面上的示例。
【讨论】:
以上是关于如何使用 GD 和 PHP 重复水印图像?的主要内容,如果未能解决你的问题,请参考以下文章