当前位置:Gxlcms > PHP教程 > php图片转换成ASCII码

php图片转换成ASCII码

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

php图片转换成ASCII码,转换后可以直接通过字符串显示图片

  1. Ascii
  2. $image = 'image.jpg';
  3. // Supports http if allow_url_fopen is enabled
  4. $image = file_get_contents($image);
  5. $img = imagecreatefromstring($image);
  6. $width = imagesx($img);
  7. $height = imagesy($img);
  8. for($h=0;$h<$height;$h++){
  9. for($w=0;$w<=$width;$w++){
  10. $rgb = imagecolorat($img, $w, $h);
  11. $a = ($rgb >> 24) & 0xFF;
  12. $r = ($rgb >> 16) & 0xFF;
  13. $g = ($rgb >> 8) & 0xFF;
  14. $b = $rgb & 0xFF;
  15. $a = abs(($a / 127) - 1);
  16. if($w == $width){
  17. echo '
    ';
  18. }else{
  19. echo '#';
  20. }
  21. }
  22. }
  23. ?>

转换成, php, ASCII

人气教程排行