需要修改 e/class/gd.php
找在大約230行,找到//設(shè)定圖像的混色模式
imagealphablending($ground_im, true);
if($iswaterimage)//圖片水印
{
imagecopymerge($ground_im, $water_im, $posx, $posy, 0, 0, $water_w,$water_h,$w_pct);//拷貝水印到目標(biāo)文件
}
改為
//設(shè)定圖像的混色模式
imagealphablending($ground_im, true);
if($iswaterimage)//圖片水印
{
if($water_info[2]==3) {
imagecopy($ground_im, $water_im, $posx, $posy, 0, 0, $water_w,$water_h);//拷貝水印到目標(biāo)文件
}else{
imagecopymerge($ground_im, $water_im, $posx, $posy, 0, 0, $water_w,$water_h,$w_pct);//拷貝水印到目標(biāo)文件
}
}
完結(jié)!