# `GlyphsToolDraw drawForegroundForLayer:options:`

*Instance Method*

Draws the foreground for the Layer.

## Declaration

```swift
optional func drawForeground(for layer: GSLayer, options: [AnyHashable : Any]? = nil)
```

```objc
- (void) drawForegroundForLayer:(GSLayer *) layer options:(NSDictionary *) options;
```

```python
drawForegroundForLayer_options_(layer: GSLayer, options: dict)
```

## Parameters

- `layer` — The Layer.
- `options` — Options

## Discussion

This should be only additional items, as the actual glyph is drawn somewhere else. The drawing happened in font units scale (the view does the transformation). If you need to draw something in a definite size (text) you have to counter scale it.

