使帝国cms支持png透明度水印的方法!
关于png透明水印的好处我就不多讲了,她的好处和美观度是毋庸置疑。需要修改 e/class/gd.php找在大约230行,找到//设定图像的混色模式 imagealphablending($ground_im, true); if($isWaterImage)//图片水印 ……
关于png透明水印的好处我就不多讲了,她的好处和美观度是毋庸置疑。需要修改 e/class/gd.php找在大约230行,找到
//设定图像的混色模式 imagealphablending($ground_im, true); if($isWaterImage)//图片水印 { imagecopymerge($ground_im, $water_im, $posX, $posY, 0, 0, $water_w,$water_h,$w_pct);//拷贝水印到目标文件
改为
//设定图像的混色模式 imagealphablending($ground_im, true); if($isWaterImage)//图片水印 { if($water_info[2]==3) { imagecopy($ground_im, $water_im, $posX, $posY, 0, 0, $water_w,$water_h);//拷贝水印到目标文件 }else{ imagecopymerge($ground_im, $water_im, $posX, $posY, 0, 0, $water_w,$water_h,$w_pct);//拷贝水印到目标文件 } }
- 上一篇
一款好用的css+js选项卡
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Typ
- 下一篇
帝国cms当有留言时通过邮件发送给管理员
1.修改e/enews/gbookfun.php文件找到function AddGbook函数,在这个函数下面找到$reurl=DoingReturnUrl("../tool/gbook/?bid=$bid",$add['ecmsfrom']);在其下面加入以下代码@include("../class/SendEmail.inc.php");Se