图片加水印

来源:互联网 发布:sql中select语句实例 编辑:程序博客网 时间:2024/06/05 02:15
<?php /****author:ywj;****/$img = imagecreatefrompng('imgwater.png');imagestring($img, 5, 5, 5, "我是喜洋洋!", imagecolorallocate($img, 255,0,0));header('Content-type:image/png');imagepng($img);?>

0 0