CHANGELOG.md
# Changelog
## Image 0.3.0
This is the changelog for Image version 0.3.0 released on June 4th, 2022. For older changelogs please consult the release tag on [GitHub](https://github.com/kipcole9/image/tags)
### Enhancements
* Add `Image.dominant_color/2` to return the dominant color of an image
* Add `Image.histogram/1` to return a histgram of an image
* Add `Image.get_pixel` to get the pixel value at a given `x` and `y` offset into an image.
## Image 0.2.0
This is the changelog for Image version 0.2.0 released on May 18th, 2022. For older changelogs please consult the release tag on [GitHub](https://github.com/kipcole9/image/tags)
### Enhancements
* Adds `Image.Text` to support generating an image from a string. See `Image.Text.text/2`.
* Adds `Image.Shape` to support generating images from shapes. In this release there is a generalised support for polygons and stars. See `Image.Shape.polygon/2` and `Image.Shape.star/2`.
* Improves `Image.compose/3` to support composing with image lists, relative image placement and more.
## Image 0.1.0
This is the changelog for Image version 0.1.0 released on May 4th, 2022. For older changelogs please consult the release tag on [GitHub](https://github.com/kipcole9/image/tags)
### Enhancements
* Initial release