首页 > 开发 > PHP > 正文

php实现图片转换成ASCII码的方法

2024-05-04 23:33:54
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php实现图片转换成ASCII码的方法,涉及php操作图片的技巧,需要的朋友可以参考下

本文实例讲述了php实现图片转换成ASCII码的方法。分享给大家供大家参考。具体如下:

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

 

 
  1. <html> 
  2. <head> 
  3. <title>Ascii</title> 
  4. <style> 
  5. body{ 
  6. line-height:0; 
  7. font-size:1px; 
  8. </style> 
  9. </head> 
  10. <body> 
  11. <?php 
  12. $image = 'image.jpg'
  13. // Supports http if allow_url_fopen is enabled 
  14. $image = file_get_contents($image); 
  15. $img = imagecreatefromstring($image); 
  16. $width = imagesx($img); 
  17. $height = imagesy($img); 
  18. for($h=0;$h<$height;$h++){ 
  19. for($w=0;$w<=$width;$w++){ 
  20. $rgb = imagecolorat($img, $w, $h); 
  21. $a = ($rgb >> 24) & 0xFF; 
  22. $r = ($rgb >> 16) & 0xFF; 
  23. $g = ($rgb >> 8) & 0xFF; 
  24. $b = $rgb & 0xFF; 
  25. $a = abs(($a / 127) - 1); 
  26. if($w == $width){ 
  27. echo '<br>'; 
  28. }else{ 
  29. echo '<span style="color:rgba('.$r.','.$g.','.$b.','.$a.');">#</span>'; 
  30. ?> 
  31. </body> 
  32. </html> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表