• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

详解PHP如何将图片转换为TXT存储

php 搞代码 3年前 (2022-01-22) 16次浏览 已收录 0个评论

PHP如何将图片转换为TXT存储?今天在用PHP写一个小插件的时候,遇到了一个小小的问题,就是需要将图片转换为TXT文本的内容。简单的说就是将图片转换为ASCII码,下面把代码分享给大家。希望对大家有所帮助。

PHP 实现的将图片转换为TXT

<?php// 打开一幅图像$file_name='d:\ascii_dora.png';$chars = "$@B%8&WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/\|()1{}[]?-_+~<>i!lI;:,\"^`'. ";function getimgchars($color_tran,$chars){  $length = strlen($chars);  $alpha=$color_tran['alpha'];  $r=$color_tran['red'];  $g=$color_tran['green'];  $b=$color_tran['blue'];  $gray = intval(0.2126 * $r + 0.7152 * $g + 0.0722 * $b);  if($gray==0){    return '.';  }  if($gray<196){     $unit = (256.0 + 1)/$length;    return $chars[intval($gray/$unit)];  }  return " ";}function color_img($color_tran,$chars){  $length = strlen($chars);  $alpha=$color_tran['alpha'];  $r=$color_tran['red'];  $g=$color_tran['green'];  $b=$color_tran['blue'];  $gray = intval(0.2126 * $r + 0.7152 * $g + 0.0722 * $b);  $rand=rand (0, $length-1);  $color="rgb(".$r.",".$g.",".$b.")";  $char=$chars[$rand];  return '<span style="color:'.$color.'" >'.$char."</span>";;}function resize_img($file_name,$chars,$flage=true){  //header('Content-Type: image/jpeg');  list($width, $height,$type) = getimagesize($file_name);  $fun='imagecreatefrom' . image_type_to_extension($type, false);  if($type==3){    $flage=false;  }  $fun($file_name);  $new_height =100;  $percent=$height/$new_height;  $new_width=$width/$percent;  $image_p = imagecreatetrueco<i>本文@来#源gaodai$ma#com搞$$代**码网</i><strong>搞代gaodaima码</strong>lor($new_width, $new_height);  $image = $fun($file_name);  imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);  if($flage){    return $image_p;  }else{    return $image;  }}$im=resize_img($file_name,$chars);$width=imagesx($im);$height=imagesy($im);$back_text="";for($i=1;$i<=$height;$i++){  for($j=1;$j<=$width;$j++){    $color_index = imagecolorat($im, $j-1, $i-1);    $color_tran = imagecolorsforindex($im, $color_index);    $back_text.=color_img($color_tran,$chars,false);  }  $back_text.="<br/>";} echo "<pre>";echo $back_text;echo "</pre>";//file_put_contents('1.txt',$back_text);

相关推荐:

详解PHP修改文件权限函数chmod

详解php如何对百万级数据进行快速排重

详解PHP如何实现Hook机制

以上就是详解PHP如何将图片转换为TXT存储的详细内容,更多请关注搞代码gaodaima其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:详解PHP如何将图片转换为TXT存储
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址