php实现的证件照换底⾊功能⽰例【⼈像抠图换背景图】本⽂实例讲述了php实现的证件照换底⾊功能。分享给⼤家供⼤家参考,具体如下:
<?php
//背景图和原图需要保持宽⾼要保持⼀样,这⾥的⽰例原图⽤的是蓝⾊背景
init();
function init(){
$old = '1.png';
$new = '2.png';
//创建⼀个png透明图
$img = imagecreatefrompng($old);
setpng($img,$old,$new);
}
function setpng($imgid,$filename,$savename){
$bg = 'bg.png';//背景图
$new = imagecreatefrompng($bg);//创建⼀个png透明图
list($width,$height)=getimagesize($filename);//获取长和宽
$white = imagecolorallocate($imgid,1,155,215);//选择⼀个替换颜⾊。这⾥是绿⾊
cleancolor($imgid,$white);
imagecolortransparent($imgid,$white);//把选择的颜⾊替换成透明
imagecopymerge($new,$imgid,0,0,0,0,$width,$height,100);//合并图⽚
imagepng($new,$savename);//保存图⽚
imagedestroy($imgid);//销毁
imagedestroy($new);
echo '<img src="'.$savename.'">';
}
function cleancolor($imgid,$color){
$width = imagesx($imgid);//获取宽
$height = imagesy($imgid);//获取⾼
for($i=0;$i<$width;$i++){
for($k=0;$k<$height;$k++){
//对⽐每⼀个像素
$rgb = imagecolorat($imgid,$i,$k);
$r = ($rgb >> 16)&0xff;//取R
$g = ($rgb >> 8)&0xff;//取G
$b = $rgb&0xff;//取B
$randr = 1.5;
$randg = 1;
$randb=1;
//蓝⾊RGB⼤致的位置。替换成绿⾊
if($r<=65*$randr && $g<=225*$randg && $b<=255*$randb && $b*$randb>=100){
//如果能够精确的计算出要保留位置的,这⾥可以写绝对的数字
if($i>=$width/2 && $i<=$width/2 && $k>=$height/2 && $k<=$height/2){
}else{
//改变颜⾊
imagesetpixel($imgid,$i,$k,$color);
php实例计算
}
}
}
}
}
$old指的是要处理的图⽚,指定为png格式
$new指的是处理后输出的图⽚名
$bg指的是背景图
更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》及《》
希望本⽂所述对⼤家PHP程序设计有所帮助。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。