gulp-inline-imagesize
v1.1.2
Published
A Gulp Plugin To Comment The Dimensions Of Images In Your HTML
Downloads
71
Readme
gulp-inline-imagesize
Make comments in your HTML with the size of your images
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