Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gulp-img-base64

laoono8MIT0.0.1

gulp html img to base64 for slice

gulp, img, base64

readme

gulp-img-base64

A simple gulp plugin, used to transform image into base64 string.

Install

npm install gulp-img-base64

Usage

var tobase64 = require("gulp-img-base64");
tobase64(options);

Example

var tobase64 = require("gulp-img-base64");
gulp.task('build-html' , function(){
  return gulp.src("./html-init/**/*.html")
      .pipe(tobase64({
          maxsize:0.5,        
          ignore:'image_loading.png',
          pathrep: {
              reg:/\/public\/bizapp\d*\//g ,
              rep:'./public/'
          }
      }))
      .pipe(gulp.dest("./html"))
});

API

maxsize

The max size of images for compiling, the default value is 1 and the unit is 'KB'

ignore

Ignore files, it can be string, array or regular.

'image' , ['image','abc'] or /\/abc\//g

pathrep

Transform file path into readable path like this :

/public/bizapp1007/image.png ==> ./public/image.png

Running test

make test

License

MIT