将上传图片背景变为透明色

$img_name = $path;  // 新图片地址
$image = file_get_contents($path);
$info = getimagesize($path);
$im = imagecreatefromstring($image);
$width = $info[0];
$height = $info[1];
for($i=0;$i<$height;$i+=1){
    for($j=0;$j<$width;$j+=1){
        $rgb = ImageColorAt($im, $j, $i);
        $r = ($rgb >> 16) & 0xFF;
        $g = ($rgb >> 8) & 0xFF;
        $b = $rgb & 0xFF;

        if(intval($r)>140 && $g >140 && $b>140){
            $hex = imagecolorallocate($im, 255, 255, 255);
            imagesetpixel($im,$j, $i, $hex);
        }
    }
}
$white = imagecolorallocate($im , 255 , 255 , 255);//拾取白色
imagefill($im , 0 , 0 , $white);//把画布染成白色
imagecolortransparent($im , $white) ;//把图片中白色设置为透明色

imagepng($im , $img_name);//生成图片

return true;

猜你喜欢

转载自blog.csdn.net/xyy_forever/article/details/107578179