diff --git a/README.md b/README.md
index ed9916f..ca93f00 100644
--- a/README.md
+++ b/README.md
@@ -1,18 +1,18 @@
# imageproxy [](https://travis-ci.org/willnorris/imageproxy) [](https://godoc.org/willnorris.com/go/imageproxy) [](LICENSE)
-imageproxy is a caching image proxy server written in go. It supports basic
-image adjustments like resizing, cropping, and rotation, and access control
-using host whitelists or request signing. And because it's pure go, deployment
-is a breeze.
+imageproxy is a caching image proxy server written in go. It features:
+
+ - basic image adjustments like resizing, cropping, and rotation
+ - access control using host whitelists or request signing (HMAC-SHA256)
+ - support for jpeg, png, and gif image formats (including animated gifs)
+ - on-disk caching, respecting the cache headers of the original images
+ - easy deployment, since it's pure go
-This project was originally inspired by, and was designed to be an alternative
-to, WordPress's [photon service][photon] (read more in [this post][]).
Personally, I use it primarily to dynamically resize images hosted on my own
-site. But you can also enable request signing and use it as an SSL proxy for
-remote images, similar to [atmos/camo][] but with additional image adjustment
-options.
+site (read more in [this post][]). But you can also enable request signing and
+use it as an SSL proxy for remote images, similar to [atmos/camo][] but with
+additional image adjustment options.
-[photon]: http://developer.wordpress.com/docs/photon/
[this post]: https://willnorris.com/2014/01/a-self-hosted-alternative-to-jetpacks-photon-service
[atmos/camo]: https://github.com/atmos/camo
@@ -111,6 +111,13 @@ x100 | 100px tall, proportional width |
200x,q60 | 200px wide, proportional height, 60% quality |
+Transformation also works on animated gifs. Here is [this source
+image][material-animation] resized to 200px square and rotated 270 degrees:
+
+[material-animation]: https://willnorris.com/2015/05/material-animations.gif
+
+
+
## Getting Started ##