php 圖片轉換成ascii 輸出圖像
php 圖片轉換成ascii 輸出圖像
這個PHP函數創建了一個簡單的JPG圖像ASCII藝術渲染。它使用廣東做繁重的工作,和一些簡單的移位分配色彩。顏色,然後轉移到十六進制值和生成的文本輸出到浏覽器。 ASCII碼從影像藝術與PHP現在,很容易。如果你覺得你有什麼改進,請隨時與我們聯系,您的想法PHPRO。
<?php
function image2ascii( $image )
{
// return value
$ret = '';
// open the image
$img = ImageCreateFromJpeg($image);
// get width and height
$width = imagesx($img);
$height = imagesy($img);
// loop for height
for($h=0;$h<$height;$h++)
{
// loop for height
for($w=0;$w<=$width;$w++)
{
// add color
$rgb = ImageColorAt($img, $w, $h);
$r = ($rgb >> 16) & 0xFF;
$g = ($rgb >> 8) & 0xFF;
$b = $rgb & 0xFF;
// create a hex value from the rgb
$hex = '#'.str_pad(dechex($r), 2, '0', STR_PAD_LEFT).str_pad(dechex($g), 2, '0', STR_PAD_LEFT).str_pad(dechex($b), 2, '0', STR_PAD_LEFT);
// now add to the return string and we are done
if($w == $width)
{
$ret .= '<br>';
}
else
{
$ret .= '<span style="color:'.$hex.';">#</span>';
}
}
}
return $ret;
}
?>
Example Usage
<?php
// an image to convert
$image = 'test.jpg';
// do the conversion
$ascii = image2ascii( $image );
// and show the world
echo $ascii;
?>