Using the freetype-py library, I can check if a glyph exists in a font like this: ```python ft_font = freetype.Face(font_path) exists = ft_font.get_char_index(0x41) != 0 ``` It'd be nice to have this functionality exposed in Pillow as well.