hola, se me ocurrio hacer un código para mostrar imágenes con caracteres y me gustó el resultado y quise compartirlo:
Código HTML:
<font style="font-size:6px;"><?php
$img=imagecreatefromjpeg("02.jpg");
$size=getimagesize("02.jpg");
for($y=10;$y<$size[1];$y+=10){
for($x=10;$x<$size[0];$x+=10){
$col=imagecolorat($img,$x,$y);
$col=base_convert($col,10,16);
echo "<font color='#$col'>&# 9608;&# 9608;</font>"; // juntar # con 9
}
echo "<br>";
}
?></font>
el resultado es este:
Uploaded with
ImageShack.us
funciona mejor con imágenes grandes (mas de 800px)