php处理png图⽚⽩⾊背景⾊改为透明⾊的实例代码先看下⾯⼀段代码,php 处理png图⽚⽩⾊背景⾊改为透明⾊
function pngMerge($o_pic,$out_pic){
$begin_r = 255;
$begin_g = 250;
$begin_b = 250;
list($src_w, $src_h) = getimagesize($o_pic);// 获取原图像信息宽⾼
$src_im = imagecreatefrompng($o_pic); //读取png图⽚
print_r($src_im);
imagesavealpha($src_im,true);//这⾥很重要意思是不要丢了$src_im图像的透明⾊
$src_white = imagecolorallocatealpha($src_im, 255, 255, 255,127); // 创建⼀副⽩⾊透明的画布
for ($x = 0; $x < $src_w; $x++) {
for ($y = 0; $y < $src_h; $y++) {
$rgb = imagecolorat($src_im, $x, $y);
$r = ($rgb >> 16) & 0xFF;
$g = ($rgb >> 8) & 0xFF;
$b = $rgb & 0xFF;
if($r==255 && $g==255 && $b == 255){
imagefill($src_im,$x, $y, $src_white); //填充某个点的颜⾊
imagecolortransparent($src_im, $src_white); //将原图颜⾊替换为透明⾊
}
if (!($r <= $begin_r && $g <= $begin_g && $b <= $begin_b)) {
imagefill($src_im, $x, $y, $src_white);//替换成⽩⾊
imagecolortransparent($src_im, $src_white); //将原图颜⾊替换为透明⾊
}
}
}
$target_im = imagecreatetruecolor($src_w, $src_h);//新图
imagealphablending($target_im,false);//这⾥很重要,意思是不合并颜⾊,直接⽤$target_im图像颜⾊替换,包括透明⾊;
imagesavealpha($target_im,true);//这⾥很重要,意思是不要丢了$target_im图像的透明⾊;
$tag_white = imagecolorallocatealpha($target_im, 255, 255, 255,127);//把⽣成新图的⽩⾊改为透明⾊存为tag_white
imagefill($target_im, 0, 0, $tag_white);//在⽬标新图填充空⽩⾊
imagecolortransparent($target_im, $tag_white);//替换成透明⾊
imagecopymerge($target_im, $src_im, 0, 0, 0, 0, $src_w, $src_h, 100);//合并原图和新⽣成的透明图
imagepng($target_im,$out_pic);
return $out_pic;
}
$o_pic = '1.png';
$name = pngMerge($o_pic,'aaaa.png');
print_r($name);
补充:⽤PHP的GD库把图⽚的背景替换成透明背景
之前写个功能⽤PHP把图⽚的背景弄成透明,之留下⽂字(⿊⾊的),我也在百度上,也试过别⼈的代码。⼤多数代码的思路都是这样:
⽣成新的画布,读取源图⽚每个坐标的颜⾊,不符合要求的⽤imagecolortransparent()函数将该颜⾊替换成透明的。
$o_pic = '1.jpg';
//要处理的⾊阶起始值
$begin_r = 215;
$begin_g = 215;
$begin_b = 215;
list($src_w,$src_h,$src_type) = getimagesize($o_pic);// 获取原图像信息
$file_ext = get_ext($o_pic);//获取扩展名
$target_im = imagecreatetruecolor($src_w,$src_h);//新图
if($file_ext == 'jpg') //转换JPG 开始
{
$src_im = ImageCreateFromJPEG($o_pic);常用的php代码实例
imagecopymerge($target_im,$src_im,0,0,0,0,$src_w,$src_h,100);
for($x = 0; $x < $src_w; $x++)
{
for($y = 0; $y < $src_h; $y++)
{
$rgb = imagecolorat($src_im, $x, $y);
$r = ($rgb >> 16) & 0xFF;
$g = ($rgb >> 8) & 0xFF;
$b = $rgb & 0xFF;
if($r > $begin_r && $g > $begin_g && $b > $begin_b ){
imagecolortransparent($target_im, imagecolorallocate($target_im,$r, $g, $b));
}
}
}
}
但是⽤了这个思路,图⽚的背景⼀直都不能便透明,改了好多次。
后来发现只有最后⼀次imagecolortransparent()有效果,前⾯都都被覆盖了。
把思路改了下,把不要的颜⾊先统⼀转换成⽩⾊,最后再将⽩⾊替换成透明
$begin_r = 98;
$begin_g = 98;
$begin_b = 98;
list($src_w, $src_h) = getimagesize($o_pic);// 获取原图像信息
$src_im = imagecreatefromjpeg($o_pic);
//imagecopymerge($target_im, $src_im, 0, 0, 0, 0, $src_w, $src_h, 100);
//imagecopyresampled($target_im, $src_im, 0, 0, 0, 0, $src_w, $src_h, $src_w, $src_h);
$i = 0;
$src_white = imagecolorallocate($src_im, 255, 255, 255);
for ($x = 0; $x < $src_w; $x++) {
for ($y = 0; $y < $src_h; $y++) {
$rgb = imagecolorat($src_im, $x, $y);
$r = ($rgb >> 16) & 0xFF;
$g = ($rgb >> 8) & 0xFF;
$b = $rgb & 0xFF;
if($r==255 && $g==255 && $b == 255){
$i ++;
continue;
}
if (!($r <= $begin_r && $g <= $begin_g && $b <= $begin_b)) {
imagefill($src_im, $x, $y, $src_white);//替换成⽩⾊
}
}
}
$target_im = imagecreatetruecolor($src_w, $src_h);//新图
$tag_white = imagecolorallocate($target_im, 255, 255, 255);
imagefill($target_im, 0, 0, $tag_white);
imagecolortransparent($target_im, $tag_white);
imagecopymerge($target_im, $src_im, 0, 0, 0, 0, $src_w, $src_h, 100);
总结
以上所述是⼩编给⼤家介绍的php 处理png图⽚⽩⾊背景⾊改为透明⾊的实例代码,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论