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
glyphsarray. 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
glyphsarray.
See Also
Drawing Text
textMatrixCGContextSetTextMatrixCGContextSetTextPositionCGContextGetTextPositionselectFont(name:size:textEncoding:)setCharacterSpacing(_:)setFont(_:)setFontSize(_:)setTextDrawingMode(_:)setAllowsFontSmoothing(_:)setAllowsFontSubpixelPositioning(_:)setAllowsFontSubpixelQuantization(_:)setShouldSmoothFonts(_:)setShouldSubpixelPositionFonts(_:)setShouldSubpixelQuantizeFonts(_:)