现在自媒体泛滥,每个自媒体账号都会给自己的文章图片打上自己的水印,那么水印是怎么实现的呢?

本日就给大家看看水印的详细实现,话不多说,直接上代码

<?php//见告浏览器以jpeg图像的办法显示header(\"大众Content-type:image/jpeg;charset=utf-8\"大众);//创建画布$width = 750;$height = 1334;//新建一个空缺图像资源$image = imagecreate($width, $height);//创建背景颜色$white = imagecolorallocate($image, 255, 255, 255);//创建字体颜色$red = imagecolorallocate($image, 255, 0, 0);//字符,转码$font = mb_convert_encoding('segmentfault', \"大众html-entities\公众, \公众utf-8\"大众); //开始绘画imagettftext ($image, 50, 0, 200, 200, $red, 'msyh.ttc','segmentfault.com');imagettftext ($image, 60, 0, 200, 300, $red, 'msyh.ttc',$font);//天生图像imagejpeg($image,\公众3.jpg\"大众);//目标图像$dst_path = \"大众3.jpg\"大众;//水印图片$src_path = 'sf.png';//创建图片的实例$dst = imagecreatefromstring(file_get_contents($dst_path));$src = imagecreatefromstring(file_get_contents($src_path));//获打水印图片的宽高list($src_w, $src_h) = getimagesize($src_path);//将水印图片复制到目标图片上,末了个参数50是设置透明度,这里实现半透明效果,两个20是掌握水印坐标位置// imagecopymerge($dst, $src, 20, 20, 0, 0, $src_w, $src_h, 50);//如果水印图片本身带透明色,则利用imagecopy方法imagecopy($dst, $src, 10, 10, 0, 0, $src_w, $src_h);//输出图片list($dst_w, $dst_h, $dst_type) = getimagesize($dst_path);switch ($dst_type) { case 1://GIF header('Content-Type: image/gif'); imagegif($dst); break; case 2://JPG header('Content-Type: image/jpeg'); imagejpeg($dst); break; case 3://PNG header('Content-Type: image/png'); imagepng($dst); break; default: break;}imagedestroy($dst);imagedestroy($src);$shuiyin = \"大众gd.php\"大众;//销毁资源imagedestroy($image);

实现水印的图片

php图片添加文字PHPGD库实现打文字水印图片水印php给图片取水印 AJAX

好了 效果就已经实现了,你还烦懑去自己试试吗?

如果想要学习互换PHP的朋友,可以关注