An open API service indexing awesome lists of open source software.

https://github.com/jsdir/resize-brunch

Automatically resizes images.
https://github.com/jsdir/resize-brunch

Last synced: 5 months ago
JSON representation

Automatically resizes images.

Awesome Lists containing this project

README

          

resize-brunch
=============

Automatically resizes images.

Usage
=====

### Configuration Options
```coffeescript
exports.config =
plugins:
resize:
"app/assets/images/originals":
height: 64
width: 64
dest: "images/thumbnails_64px"
```

#### Multiple option sets
```coffeescript
exports.config =
plugins:
resize:
"app/assets/images/originals": [
height: 64
width: 64
dest: "images/thumbnails_64px"
,
height: 32
width: 32
dest: "images/thumbnails_32px"
]
```