# `Ratex.Options`
[🔗](https://github.com/akoutmos/ratex/blob/master/lib/ratex/options.ex#L1)

This struct is used to encapsulate all of the rendering options that the Ratex
library supports. This struct is serialized via Rustler and passed directly
to the NIF library.

# `t`

```elixir
@type t() :: %Ratex.Options{
  color: String.t(),
  font_size: float(),
  inline: boolean(),
  pixel_ratio: float() | nil,
  unicode_font_path: String.t() | nil
}
```

# `new`

Create a new options struct from a list/map.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
