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 .= '
';
}
else
{
$ret .= '#';
}
}
}
return $ret;
}
?>
Example Usage
// an image to convert
$image = 'test.jpg';
// do the conversion
$ascii = image2ascii( $image );
// and show the world
echo $ascii;
?>
原神纳塔3个亮闪闪的贝壳收集位置攻略-原神纳塔3个亮闪闪的贝壳在哪里收集
崩坏星穹铁道雪国飘摇寒苦愁任务怎么做-崩坏星穹铁道雪国飘摇寒苦愁任务攻略
原神5.0下半卡池的基尼奇怎么培养-原神基尼奇培养攻略+突破材料(武器,天赋)
魔兽世界埃霍恩的冰霜之镰如何获得 魔兽世界埃霍恩的冰霜之镰获取详细攻略
归龙潮的长命锁潮品如何选择 归龙潮的长命锁潮品详情推荐
DNF消灭魔王之旅活动啥时候开始 DNF消灭魔王之旅活动开始时间详情介绍