图片加水印

$file="7.jpg";
$width_th=200;
$height_th=100;
$imgs=imagecreatefromjpeg($file);
$bgc=imagecolorallocate($imgs,255,255,90);  //背景色
$fontcolor=imagecolorallocate($imgs,255,255,41); //字体色
imagestring($imgs,12,300,400,"test",$fontcolor);
imagejpeg($imgs);

 12,300,400是指字体大小12,x,y坐标为300,400

你可能感兴趣的:(图片)