gulp-tobase64

1.1.2 • Public • Published

gulp-tobase64

NPM version Build Status Coverage Status

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

Install

npm install gulp-tobase64

Usage

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

Example

var tobase64 = require("gulp-tobase64");
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

Readme

Keywords

none

Package Sidebar

Install

npm i gulp-tobase64

Weekly Downloads

10

Version

1.1.2

License

MIT

Last publish

Collaborators

  • wanghx