0.1.1 • Published 10 years ago

grunt-inline-imgbase64 v0.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

grunt-inline-imgbase64

Grunt plugin for imageUrl replaced by base64 data.

Getting Started

This plugin requires Grunt.

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-inline-imgbase64 --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-inline-imgbase64');

The "inline_imgbase64" task

Overview

In your project's Gruntfile, add a section named inline_imgbase64 to the data object passed into grunt.initConfig().

grunt.initConfig({
  inline_imgbase64: {
    options: {
      exts:['jpg','jpeg','png','gif'],
      tag:'__inline',
      maxLength:40
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
})

Options

options.exts

Type: Array Default value: []

A array value that is used to filter image url.

options.tag

Type: String Default value: ''

A string value that is used to decide whether replace by base64

####maxLength Type: Number default value null A number value that is used to limit encoding image size

Usage Examples

下面的例子会内联html和css文件内的imageUrl。支持本地和远程文件。

inline_imgbase64: {
        options:{
            exts:['jpg','jpeg','png','gif'], //需要替换的文件类型
            tag:'__inline', // 设定此值时,带此参数的imageUrl才会被替换
            maxLength:40 //只用于远程图片大小限制,图片大小超过maxLength时不转换,单位KB
        },
        dist: {
            src: ['test/dist/*.*'],
            dest: ['tmp/']
        }
    }

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

0.1.0 !基本完成功能

License

Copyright (c) 2014 junlonghuo. Licensed under the MIT license.