首頁  >  文章  >  後端開發  >  PHP 實作的將圖片轉換為ASCII碼

PHP 實作的將圖片轉換為ASCII碼

墨辰丷
墨辰丷原創
2018-06-06 17:57:192252瀏覽

這篇文章主要介紹PHP 實現的將圖片轉換為ASCII碼,有興趣的朋友參考下,希望對大家有幫助。

PHP 實現的將圖片轉換為TXT

<?php
/*
2015年10月19日10:24:59

*/
// 打开一幅图像

$file_name=&#39;d:\ascii_dora.png&#39;;
$chars = "$@B%8&WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/\|()1{}[]?-_+~<>i!lI;:,\"^`&#39;. ";
function getimgchars($color_tran,$chars){
  $length = strlen($chars);
  $alpha=$color_tran[&#39;alpha&#39;];
  $r=$color_tran[&#39;red&#39;];
  $g=$color_tran[&#39;green&#39;];
  $b=$color_tran[&#39;blue&#39;];
  $gray = intval(0.2126 * $r + 0.7152 * $g + 0.0722 * $b);

  if($gray==0){
    return &#39;.&#39;;
  }

  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[&#39;alpha&#39;];

  $r=$color_tran[&#39;red&#39;];
  $g=$color_tran[&#39;green&#39;];
  $b=$color_tran[&#39;blue&#39;];
  $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 &#39;<span style="color:&#39;.$color.&#39;" >&#39;.$char."</span>";;
  
}

function resize_img($file_name,$chars,$flage=true){
  //header(&#39;Content-Type: image/jpeg&#39;);
  list($width, $height,$type) = getimagesize($file_name);
  $fun=&#39;imagecreatefrom&#39; . 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 = imagecreatetruecolor($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 class="brush:php;toolbar:false">";
echo $back_text;
echo "
"; //file_put_contents('1.txt',$back_text);

總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。

相關推薦:

php實作流程控制switch的簡單方法

#PHP中類別屬性與類別靜態變數的存取方法實例

PHP實作產生短網址方法總結

以上是PHP 實作的將圖片轉換為ASCII碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn