php 圖片轉換成ascii 輸出映像_PHP教程

來源:互聯網
上載者:User
php 圖片轉換成ascii 輸出映像

php 圖片轉換成ascii 輸出映像

這個PHP函數建立了一個簡單的JPG映像ASCII藝術渲染。它使用廣東做繁重的工作,和一些簡單的移位分配色彩。顏色,然後轉移到十六進位值和產生的文本輸出到瀏覽器。 ASCII碼從影像藝術與PHP現在,很容易。如果你覺得你有什麼改進,請隨時與我們聯絡,您的想法PHPRO。


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;
?>


http://www.bkjia.com/PHPjc/444992.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/444992.htmlTechArticlephp 圖片轉換成ascii 輸出映像 php 圖片轉換成ascii 輸出映像 這個PHP函數建立了一個簡單的JPG映像ASCII藝術渲染。它使用廣東做繁重的工作,和...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.