php 给图片加水印
Posted 干蛋博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 给图片加水印相关的知识,希望对你有一定的参考价值。
<?php water(‘upload/images/202007250204199.jpg‘, ‘upload/images/202007250155160.jpg‘); function water($durl, $surl) { $dit = imagecreatefromjpeg($durl); $src = imagecreatefromjpeg($surl); list($dw, $dh) = getimagesize($durl); list($sw, $sh) = getimagesize($surl); $result = imagecopymerge($dit, $src, ($dw - $sw) / 2, $dh - $sh - 100, 0, 0, $sw, $sh, 100); header(‘Content-type:image/jpeg‘); imagejpeg($dit, NULL, 100); imagedestroy($dit); imagedestroy($src); } ?>
以上是关于php 给图片加水印的主要内容,如果未能解决你的问题,请参考以下文章