php工具型代码之印章抠图

能将白底红字的印章抠出来,用的是php,框架是laravel,其他框架请自行调节。扣其他颜色也可以,把里面的那段rgb参数判断改改就行了,最后抠出来的效果就是白底变透明,然后只留下红色的章,放在其他页面上就能形成盖章的效果了,代码自己写的,可能有bug,但是做做测试还是ok的,用到工作上的话请自行测试和优化,(在我自己测试对比下,能做到和PS差不多的抠图效果)。

  1. function getStamp(){
  2. $path = storage_path('2018052411173848180.png');
  3. $image = file_get_contents($path);
  4. $info = getimagesize($path);
  5. $im = imagecreatefromstring($image);
  6. $width = $info[0];
  7. $height = $info[1];
  8. for($i=0;$i<$height;$i+=1){
  9. for($j=0;$j<$width;$j+=1){
  10. $rgb = ImageColorAt($im, $j, $i);
  11. $r = ($rgb >> 16) & 0xFF;
  12. $g = ($rgb >> 8) & 0xFF;
  13. $b = $rgb & 0xFF;
  14. echo $r.'.'.$g.'.'.$b.'.='.$rgb.'<br>x='.$j.', y='.$i.'<br>';
  15. if(intval($r)>220 && $g >220 && $b>220){
  16. $hex = imagecolorallocate($im, 255, 255, 255);
  17. imagesetpixel($im,$j, $i, $hex);
  18. }
  19. }
  20. }
  21. $white = imagecolorallocate($im , 255 , 255 , 255);//拾取白色
  22. imagefill($im , 0 , 0 , $white);//把画布染成白色
  23. imagecolortransparent($im , $white ) ;//把图片中白色设置为透明色
  24. imagepng($im , storage_path('test2.png'));//生成图片
  25. return false;
  26. }