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

Readme

Keywords

Package Sidebar

Install

npm i gulp-inline-imagesize

Weekly Downloads

9

Version

1.1.2

License

MIT

Unpacked Size

4.34 kB

Total Files

7

Last publish

Collaborators

  • adamisntdead