Example #1
0
 public bool TryGetBitmap(ushort glyphIndex, out GlyphBitmap glyphBmp) => _bitmapList.TryGetBitmap(glyphIndex, out glyphBmp);
Example #2
0
 public GlyphBitmap GetGlyphBitmap(ushort glyphIndex)
 {
     _bitmapList.TryGetBitmap(glyphIndex, out GlyphBitmap found);
     return(found);
 }