<!--
{
  "availability" : [
    "iOS: 2.0.0 - 7.0.0",
    "iPadOS: 2.0.0 - 7.0.0",
    "tvOS: -",
    "visionOS: 1.0.0 - 1.0.0",
    "watchOS: 2.0.0 - 2.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "CoreGraphics",
  "identifier" : "/documentation/CoreGraphics/CGContext/showGlyphsAtPoint(x:y:glyphs:count:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Core Graphics",
      "CoreGraphics"
    ],
    "preciseIdentifier" : "c:@F@CGContextShowGlyphsAtPoint"
  },
  "title" : "showGlyphsAtPoint(x:y:glyphs:count:)"
}
-->

# showGlyphsAtPoint(x:y:glyphs:count:)

Displays an array of glyphs at a position you specify.

```
func showGlyphsAtPoint(x: CGFloat, y: CGFloat, glyphs: UnsafePointer<CGGlyph>?, count: Int)
```

## Parameters

`x`

A value for the x-coordinate of the user space at which to display the glyphs.

`y`

A value for the y-coordinate of the user space at which to display the glyphs.

`glyphs`

An array of glyphs to display.

`count`

The total number of glyphs passed in the `glyphs` parameter.

## Discussion

This function displays an array of glyphs at the specified position in the user space.

## See Also

[`showText(string:length:)`](/documentation/CoreGraphics/CGContext/showText(string:length:))

Displays a character array at the current text position, a point specified by the current text matrix.

[`showTextAtPoint(x:y:string:length:)`](/documentation/CoreGraphics/CGContext/showTextAtPoint(x:y:string:length:))

Displays a character string at a position you specify.



---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)