Contents

CGContextShowGlyphsAtPositions

Draws glyphs at the provided position.

Declaration

extern void CGContextShowGlyphsAtPositions(CGContextRef c, const CGGlyph *glyphs, const CGPoint *Lpositions, size_t count);

Parameters

  • c:

    The graphics context in which to display the glyphs.

  • glyphs:

    An array of glyphs.

  • Lpositions:

    The positions for the glyphs. Each item in this array matches with the glyph at the corresponding index in the glyphs array. The position of each glyph is specified in text space, and, as a consequence, is transformed through the text matrix to user space.

  • count:

    The number of items in the glyphs array.

See Also

Drawing Text