0.0.4 • Published 6 years ago

image-responsive-cache v0.0.4

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

image-responsive-cache

This is a library to resize and cache images using an arbitrary presets of dimensions.

If you are running Google Speed Insights test on your web pages and you notice that score is low because of images then you can probably do some optimization. Depending on your designs your desktop might call for a different resolution of images from mobile or tablet view. The closer the rendered image is to the actual dimensions of the image the better the score is going to be. You might want to serve different dimensions to different screen sizes so you might need a few presets.

This library is responsible for resizing and caching images at a defined cache path. You will need to setup your own routes that resolve to cached paths, however. For example in express or hapi you will want to initalize routes that resolve to cached images using

Requirements

This library works with ImageMagick or GraphicsMagick so it is required that one of these is installed.

Installation

npm i --save-responsive-cache

Usage

You

'use strict';

const irc = require('image-responsive-cache');

var ircObj = irc({
    extension: 'jpg',       // default is jpg
    quality: 75,            // this is the default
    debug: true,            // set false in production
    cache_path: '/tmp',     // cache image is created here
    presets: {              // you can have any number of presets or you can use default ones.
        PRESET1: {        // defined preset coming from you configs
            width: 200,     // width is 200
            height: null,   // height is auto. current aspect ratio is preserved
        },
        PRESET2: {
            width: 100,
            height: null
        }

    }
});

// resize and cache image
let cached = ircObj.image('PRESET1', __dirname + '/images/sample.jpg');
console.log("PRESET1 Image: ", cached);

let cached2 = ircObj.image('PRESET2', __dirname + '/images/sample.jpg');
console.log("PRESET2 Image: ", cached2);

Output:

image not in cache. resizing...
Directory /tmp/PRESET1 created!
Directory /tmp/PRESET1/b created!
Directory /tmp/PRESET1/b/1 created!
PRESET1 Image:  /tmp/PRESET1/b/1/b1f1d7e25a8deb66010a0c932fff4d02b6b505e5.jpg
image not in cache. resizing...
Directory /tmp/PRESET2 created!
Directory /tmp/PRESET2/b created!
Directory /tmp/PRESET2/b/1 created!
PRESET2 Image:  /tmp/PRESET2/b/1/b1f1d7e25a8deb66010a0c932fff4d02b6b505e5.jpg

Use cached and cached2 paths in your webserver routes.