码迷,mamicode.com
首页 > Web开发 > 详细

php 给图片加水印

时间:2020-07-26 00:18:27      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:func   list   ges   water   function   color   creat   nbsp   图片加水印   

<?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 给图片加水印

标签:func   list   ges   water   function   color   creat   nbsp   图片加水印   

原文地址:https://www.cnblogs.com/qiuxd/p/13376566.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!