Beraldo Postado Dezembro 22, 2006 Denunciar Share Postado Dezembro 22, 2006 Script postado por: FabyoTransformando imagem Gif em codigo ASCII<? //path aonde esta a imagem.gif $path = "C:/root/Imagens/imagem.gif"; $imgHand = ImageCreateFromGIF($path.$img); /* http://www.php.net/manual/en/function.getimagesize.php */ $imgSize = GetImageSize($path.$img); $imgWidth = $imgSize[0]; $imgHeight = $imgSize[1]; $htmlCode = "<pre>"; for ($l = 0; $l < $imgHeight; $l++) { $htmlCode .= "\n"; for ($c = 0; $c < $imgWidth; $c++) { /* http://www.php.net/manual/en/function.imagecolorat.php */ $pxlCor = ImageColorAt($imgHand,$c,$l); /* http://www.php.net/manual/en/function.imag...orsforindex.php */ $pxlCorArr = ImageColorsForIndex($imgHand, $pxlCor); /* http://www.php.net/manual/en/function.dechex.php */ $htmlCor = DecHex($pxlCorArr["red]) . DecHex($pxlCorArr["green"]) . DecHex($pxlCorArr["blue"]); $htmlCode .= "<font color=$htmlCor>&</font>"; } } $htmlCode .= "\n</pre>"; header("Content-type: text/html \n\n"); echo "<html><title>GIF 2 ASCII: $img</title>"; echo "<body bgcolor=\"#000000\">"; echo $htmlCode;?> Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Beraldo
Script postado por: Fabyo
Transformando imagem Gif em codigo ASCII
Link para o comentário
Compartilhar em outros sites
0 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.