PHP给图片加文字(水印)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP给图片加文字(水印)相关的知识,希望对你有一定的参考价值。

准备工作:

 技术分享

 

 

代码:

 

<?php
header("Content-type: image/jpeg");    //浏览器输出,如不需要可去掉此行
$im = @imagecreatefromjpeg(‘bg.jpg‘);    //从图片建立文件,此处以jpg文件格式为例
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
$text = ‘16‘;  //要写到图上的文字
$font = ‘arial.ttf‘;  //写的文字用到的字体。
$srcw=imagesx($im);
imagettftext($im, 40, 0, 20, 80, $grey, $font, $text);
imagettftext($im, 40, 0, 20, 80, $black, $font, $text);
imagettftext($im, 40, 0, 20, 80, $white, $font, $text);
imagepng($im);
imagedestroy($im);
?>

 

【效果】
技术分享

 

 

如果要将图片保存到某个文件夹,只需将 :

imagepng($im);改为:

imagepng($im,"路径/output.png");

 

 

 

 

 

 

 

 

 


以上是关于PHP给图片加文字(水印)的主要内容,如果未能解决你的问题,请参考以下文章

PHP给图片加文字(水印)

php给图片加文字水印

PHP加水印代码 支持文字和图片水印

php对图片加水印--将文字作为水印加到图片

php给图片添加文字水印方法汇总

Python 给图片加文字或logo水印(附代码) | Python工具