欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

PHP 去除图片指定颜色

程序员文章站 2022-07-07 21:38:56
...

 

 

	/**
	 * 把图像按指定颜色扣成透明返回图像
	 * @param $image 源图像
	 * @param $r red
	 * @param $g green
	 * @param $b blue
	 * @param $w width
	 * @param $h height
	 * @return resource $timage 透明图像
	 */
	function transarent($image, $r, $g, $b, $w, $h){
		$timage = imagecreatetruecolor($w,$h);
	    imagecopymerge($timage,$image,0,0,0,0,$w,$h,100);
	    for($x = 0; $x < $w; $x++) {
	        for($y = 0; $y < $h; $y++) {
	            if(imagecolorat($image, $x, $y)){   
	                imagecolortransparent($timage,imagecolorallocate($timage, $r, $g, $b));
	            }
	        }
	    }
	    imagedestroy($image);
	    return $timage;
	}