'; $width = imagesx($image); $height = imagesy($image); for($y = 0; $y < $height; ++$y) { for($x = 0; $x < $width; ++$x) { $thiscol = imagecolorat($image, $x, $y); $rgb = imagecolorsforindex($image, $thiscol); $htmlcol = sprintf("#%2X%2X%2X", $rgb['red'], $rgb['green'], $rgb['blue']); $char = "8"; echo $char; } echo "\n"; } echo ''; } ?>