# `GlyphsReporter drawBackgroundWithOptions:`

*Instance Method*

Is called to asked the plugin to draw anything it likes behind the normal outlines

## Declaration

```swift
optional func drawBackground(options: [AnyHashable : Any]! = [:])
```

```objc
- (void) drawBackgroundWithOptions:(NSDictionary *) options;
```

```python
drawBackgroundWithOptions_(options: dict)
```

## Parameters

- `options` — A dictionary with some info about the environment (currently “Scale”)

## Discussion

Implement this method if the automatic scaling gets into your way. You need to check for the current layer and position of the layer yourself.

