The returned FT_Face object is always owned by
the manager. You should never try to discard it
yourself.
Never change the face's transformation matrix
(i.e., never call the FT_Set_Transform()
function) on a returned face! If you need to
transform glyphs, do it yourself after glyph
loading.
Similarly, the returned FT_Size object is always
owned by the manager. You should never try to
discard it, and never change its settings with
FT_Set_Pixel_Sizes() or FT_Set_Char_Size()!
The returned size object is the face's current
size, which means that you can call
FT_Load_Glyph() with the face if you need to.
|