7.0.0 • Published 8 months ago

ember-cli-image-transformer v7.0.0

Weekly downloads
279
License
MIT
Repository
github
Last release
8 months ago

ember-cli-image-transformer

Build Status Ember Observer Score

Transform Images for your Ember Application from One Source Image

I hate having to create a bunch of identical images for use as icons and favicon images for my application, so I created this addon to take a single source image and transform it into many images of differing sizes, types, and backgrounds.

It is built using EmberJS and takes advantage of the awesome Sharp library to do the heavy lifting.

Compatibility

  • Ember.js v4.4 or above
  • Ember CLI v4.4 or above
  • Node.js v16 or above

Installation

ember install ember-cli-image-transformer

Usage

Create an ember-cli-image-transformer section in your ember-cli-build.js file with an images array. Each element in the array represents a different set of images to be generated.

module.exports = function(defaults) {
  var app = new EmberApp(defaults, {
    'ember-cli-image-transformer': {
      images: [
        {
          inputFilename: 'public/square.svg',
          outputFileName: 'icon-square',
          convertTo: 'png',
          sizes: [16, 32, 45, 900],
        },
        {
          inputFilename: 'public/circle.svg',
          outputFileName: 'transparent-circle',
          convertTo: 'png',
          background: {r: 255, g: 255, b: 255, alpha: 0},
          sizes: [100],
        }
      ]
    }
  });

All generated images will be placed into the public/assets path of your application.

Usage in a template

<!-- application.hbs -->
<img src='assets/transparent-circle100.png'>

Image Options

KeyRequiredDefault ValueExampleDescription
inputFileName:heavy_check_mark:nonepublic/circle.svgWhere (relative to the application root) to find the input image
outputFileName:heavy_check_mark:nonetransparent-circleThis is combined with the convertTo and size to create the output file eg transparent-circle92.png
convertTo:heavy_check_mark:nonepngThe output file type
sizes:heavy_check_mark:none[92, 150]An array of image sizes to produce
destinationassets/iconsimages/wherever/you/wantThe destination directory for the output images relative to /public
backgroundnone{r: 255, g: 255, b: 255, alpha: 0}Add a background color to the image.

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.

7.0.0

8 months ago

6.0.0

11 months ago

5.0.0

2 years ago

4.0.3

3 years ago

4.0.2

4 years ago

4.0.1

4 years ago

4.0.0

4 years ago

3.2.0

4 years ago

3.1.0

5 years ago

3.0.1

5 years ago

3.0.0

5 years ago

2.2.0

5 years ago

2.1.0

6 years ago

2.0.0

6 years ago

1.4.0

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago