> 16) & 0xFF; // Get the gray value of the pixel $charIndex = (int)(($gray / 255) * (count($asciiChars) - 1)); // Map the gray value to an ASCII character $asciiArt .= $asciiChars[$charIndex]; } $asciiArt .= PHP_EOL; } imagedestroy($image); imagedestroy($resizedImage); return $asciiArt; } ?>