README.md
# Exgravatar

[](https://hex.pm/packages/exgravatar)
[](https://hexdocs.pm/exgravatar/)
[](https://hex.pm/packages/exgravatar)
[](https://github.com/scrogson/exgravatar/blob/master/LICENSE.md)
[](https://github.com/scrogson/exgravatar/commits/master)
An Elixir module for generating [Gravatar](http://gravatar.com) urls.
Make sure to check out the
[Gravatar documentation](https://en.gravatar.com/site/implement/images/) for all
available options.
## Usage
```elixir
import Exgravatar
gravatar_url "jdoe@example.com", secure: false
#=> "http://gravatar.com/avatar/694ea0904ceaf766c6738166ed89bafb"
# with size option in pixels
gravatar_url("jdoe@example.com", s: 256)
#=> "https://secure.gravatar.com/avatar/694ea0904ceaf766c6738166ed89bafb?s=256"
```
## Copyright and License
Copyright (c) 2015 Sonny Scroggin
This work is free. You can redistribute it and/or modify it under the
terms of the MIT License. See the [LICENSE.md](./LICENSE.md) file for more details.