gulp-inline-imagesize

1.1.2 • Public • Published

gulp-inline-imagesize

Make comments in your HTML with the size of your images

npm Build Status

Install

$ npm install --save-dev gulp-inline-imagesize

Usage

const gulp = require('gulp');
const inlineImagesize = require('gulp-inline-imagesize');
 
gulp.task('default', () =>
    gulp.src('src/*.html')
        .pipe(inlineImagesize())
        .pipe(gulp.dest('dist'))
);

Output

An example output is given an image tree.jpg thats 1500x500, and the HTML:

<img src="tree.jpg" alt="picture of a tree">

The output of running this task would be:

<!-- 1500 x 500 -->
<img src="tree.jpg" alt="picture of a tree">

License

MIT © Adam Kelly

/gulp-inline-imagesize/

    Package Sidebar

    Install

    npm i gulp-inline-imagesize

    Weekly Downloads

    18

    Version

    1.1.2

    License

    MIT

    Unpacked Size

    4.34 kB

    Total Files

    7

    Last publish

    Collaborators

    • adamisntdead