编程爱好者之家

php给图片加文字水印

2018-04-21 17:36:34 325

header("Content-type:image/jpeg");

imagealphablending($image, true);
//设置颜色,后三个数字参数是RGB
$white = imagecolorallocate($image, 255,255, 255);
//字体文件路径,simsun宋体
$font = './assets/simsun.ttc';

//第一个参数是需要加水印图,第二个参数设定font-size,
//第三个参数设定字体的阅读方向,0则为从左到右阅读,
//第四和第五个参数则为文字水印的摆放坐标,第六是字体颜色,第七是字体样式,第八是文字内容
imagefttext($image, 17, 0, 388, 240, $white , $font, $name);
imagefttext($image, 17, 0, 388, 305, $white , $font, $phone);


同类文章