当前位置:Gxlcms > PHP教程 > 将颜色转换为其反色的PHP代码

将颜色转换为其反色的PHP代码

时间:2021-07-01 10:21:17 帮助过:2人阅读

这段php代码可以把一个颜色变成与之相反的颜色编码,如:白色变成黑色,蓝色变成黄色

  1. function color_inverse($color){
  2. $color = str_replace('#', '', $color);
  3. if (strlen($color) != 6){ return '000000'; }
  4. $rgb = '';
  5. for ($x=0;$x<3;$x++){
  6. $c = 255 - hexdec(substr($color,(2*$x),2));
  7. $c = ($c < 0) ? 0 : dechex($c);
  8. $rgb .= (strlen($c) < 2) ? '0'.$c : $c;
  9. }
  10. return '#'.$rgb;
  11. }
  12. //使用范例:
  13. // black -> white
  14. print color_inverse('#000000');
  15. // --> returns #ffffff
  16. // blue -> yellow
  17. print color_inverse('#0000FF');
  18. // --> #FFFF00

转换为, 其反, PHP

人气教程排行