0.4.3 • Published 7 years ago

ember-filter-image v0.4.3

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

npm version Ember Observer Score Build Status

ember-filter-image

An ember-cli addon for cross-browser image filtering using SVG filters.

Just take me to the demo!

Usage

Just add the filter-image component to your template:

{{filter-image src="image.jpg" filters=filters}}

src should be pretty self-explanatory, and filters is an object containing the filter settings, e.g. (in your route):

setupController(controller) {
  controller.set('filters', {
    contrast: 1,
    saturation: 1,
    brightness: 0
  })
}

Scaling

By default, the rendered image will be scaled such that it is contained in the parent DOM element. If you'd prefer it to be cropped apply this:

{{filter-image src="image.jpg" filters=filters crop=true}}

If you don't want the aspect ratio to be locked, apply this:

{{filter-image src="image.jpg" filters=filters lockAspectRatio=false}}

Options

NameTypeDefaultDescription
srcStringN/AThe source of the image
filtersObject{ saturation: 1, contrast: 1, brightness: 0 }The values for the filters to apply
cropBooleanfalseWhether to crop the image on scaling (this is obviously ignored if the aspect ratio is not locked)
lockAspectRatioBooleantrueWhether to lock the aspect ratio on scaling

Why not use CSS filters?

Because IE11 doesn't support them...

Supported filters

Adding more filters just a matter of implementing the respective filter function, though.

Installation

  • git clone <repository-url> this repository
  • cd ember-filter-image
  • npm install
  • bower install

Running

Running Tests

  • npm test (Runs ember try:each to test your addon against multiple Ember versions)
  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit http://ember-cli.com/.

0.4.3

7 years ago

0.4.2

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.8

7 years ago

0.3.4

7 years ago

0.3.3

7 years ago

0.3.2

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.3.7

7 years ago

0.3.6

8 years ago

0.3.5

8 years ago

0.1.0

8 years ago