PHP 去除图片指定颜色_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > PHP 去除图片指定颜色

PHP 去除图片指定颜色

 2013/8/22 23:14:08  00.CW.01  程序员俱乐部  我要评论(0)
  • 摘要:/***把图像按指定颜色扣成透明返回图像*@param$image源图像*@param$rred*@param$ggreen*@param$bblue*@param$wwidth*@param$hheight*@returnresource$timage透明图像*/functiontransarent($image,$r,$g,$b,$w,$h){$timage=imagecreatetruecolor($w,$h);imagecopymerge($timage,$image,0,0,0,0
  • 标签:PHP 图片

?

?

class="php" name="code">	/**
	 * 把图像按指定颜色扣成透明返回图像
	 * @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;
	}

?

  • transarent.rar (388 Bytes)
  • 下载次数: 0
发表评论
用户名: 匿名