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

 2025-01-16  阅读 412  评论 8  点赞 458

摘要:本文实例讲述了php实现图片转换成ascii码的方法。分享给大家供大家参考。具体如下: php图片转换成ascii码,转换后可以直接通过字符串显示图片 ascii body{ line-height:0; font-size:1px; } > 16) & 0xff; $g = ($rgb >> 8) & 0xff; $b = $rgb & 0xff; $a = abs(($a / 127)

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

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

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


<html>
 <head>
  <title>ascii</title>
  <style>
   body{
    line-height:0;
    font-size:1px;
   }
  </style>
 </head>
 <body>
   <?php
  $image = 'image.jpg';
  // supports http if allow_url_fopen is enabled
  $image = file_get_contents($image);
  $img = imagecreatefromstring($image);
  $width = imagesx($img);
  $height = imagesy($img);
  for($h=0;$h<$height;$h++){
   for($w=0;$w<=$width;$w++){
    $rgb = imagecolorat($img, $w, $h);
    $a = ($rgb >> 24) & 0xff;
    $r = ($rgb >> 16) & 0xff;
    $g = ($rgb >> 8) & 0xff;
    $b = $rgb & 0xff;
    $a = abs(($a / 127) - 1);
    if($w == $width){
     echo '<br>';
    }else{
      echo '<span style="color:rgba('.$r.','.$g.','.$b.','.$a.');">#</span>';
    }
   }
  }
  ?>
 </body>
</html>

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


标签:phpphp教程

评论列表:

  •   haliluya
     发布于 2天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0273秒, 内存占用1.94 MB, 访问数据库30次

冀ICP备19034377号