Skip to content

替换文件内对图片地址的链接为base64的数据,减少链接请求. 图片地址包括html里的图片引用如:<img src='"/img/publish.jpeg">,css文件内的背景图片:url("http://g.tbcdn.cn/adc.gif"),支持相对路径和http地址。

License

Notifications You must be signed in to change notification settings

junlonghuo/grunt-inline-imgbase64

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

替换文件内对图片地址的链接为base64的数据,减少链接请求. 图片地址包括html里的图片引用如:<img src='"/img/publish.jpeg">,css文件内的背景图片:url("http://g.tbcdn.cn/adc.gif"),支持相对路径和http地址。

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published