php实现的证件照换底色功能示例【人像抠图/换背景图】

后端开发   发布日期:2020年05月29日   浏览次数:1589

本文实例讲述了php实现的证件照换底色功能。分享给大家供大家参考,具体如下:

  1. <?php
  2. //背景图和原图需要保持宽高要保持一样,这里的示例原图用的是蓝色背景
  3. init();
  4. function init(){
  5.   $old = '1.png';
  6.   $new = '2.png';
  7.   //创建一个png透明图
  8.   $img = imagecreatefrompng($old);
  9.   setpng($img,$old,$new);
  10. }
  11. function setpng($imgid,$filename,$savename){
  12.   $bg = 'bg.png';//背景图
  13.   $new = imagecreatefrompng($bg);//创建一个png透明图
  14.   list($width,$height)=getimagesize($filename);//获取长和宽
  15.   $white = imagecolorallocate($imgid,1,155,215);//选择一个替换颜色。这里是绿色
  16.   cleancolor($imgid,$white);
  17.   imagecolortransparent($imgid,$white);//把选择的颜色替换成透明
  18.   imagecopymerge($new,$imgid,0,0,0,0,$width,$height,100);//合并图片
  19.   imagepng($new,$savename);//保存图片
  20.   imagedestroy($imgid);//销毁
  21.   imagedestroy($new);
  22.   echo '<img src="'.$savename.'">';
  23. }
  24. function cleancolor($imgid,$color){
  25.   $width = imagesx($imgid);//获取宽
  26.   $height = imagesy($imgid);//获取高
  27.   for($i=0;$i<$width;$i++){
  28.     for($k=0;$k<$height;$k++){
  29.       //对比每一个像素
  30.       $rgb = imagecolorat($imgid,$i,$k);
  31.       $r = ($rgb >> 16)&0xff;//取R
  32.       $g = ($rgb >> 8)&0xff;//取G
  33.       $b = $rgb&0xff;//取B
  34.       $randr = 1.5;
  35.       $randg = 1;
  36.       $randb=1;
  37.       //蓝色RGB大致的位置。替换成绿色
  38.       if($r<=65*$randr && $g<=225*$randg && $b<=255*$randb && $b*$randb>=100){
  39.         //如果能够精确的计算出要保留位置的,这里可以写绝对的数字
  40.         if($i>=$width/2 && $i<=$width/2 && $k>=$height/2 && $k<=$height/2){
  41.           
  42.         }else{
  43.           //改变颜色
  44.           imagesetpixel($imgid,$i,$k,$color);
  45.         }
  46.       }
  47.     }
  48.   }
  49. }
  • $old指的是要处理的图片,指定为png格式

  • $new指的是处理后输出的图片名

  • $bg指的是背景图

以上就是php实现的证件照换底色功能示例【人像抠图/换背景图】的详细内容,更多关于php实现的证件照换底色功能示例【人像抠图/换背景图】的资料请关注九品源码其它相关文章!