Grunt-contrib-imagemin image Compression

Source: Internet
Author: User

Grunt-contrib-imagemin: Image compression

Install plugin: npm install grunt-contrib-imagemin--save-dev

Parameters

Optimizationlevel (PNG)
Type: Number
Default value: 3
Select an optimization level of 0 to 7.

Progressive (JPG)
Type: Boolean
Default: True
Lossless conversion.

Interlaced (GIF)
Type: Boolean
Default: True
Interlaced GIF is progressively rendered.

Svgoplugins (SVG)
Type: Array
Default: []
Customize which svgo plugin to use.

Use
Type: Array
Default: null
Additional plugins are used with imagemin.

1. Dynamically compress pictures within a folder

imagemin: {/*Compress picture size*/Dist: {options: {optimizationlevel :3 //define PNG picture optimization levels}, files: [{expand:true, CWD:'img/', src: ['**/*. {Png,jpg,jpeg}'],//optimize all png/jpg/jpeg images in the IMG directoryDest'img1/' //optimized picture save location, overwrite old picture, without prompting    }]  }}

2. Compress Pictures statically

imagemin: {/*Compress picture size*/Dist: {options: {optimizationlevel :3 //define PNG picture optimization levels}, files: {'img1/1.jpg':'img/1.jpg',      'img1/2.jpg':'img/2.jpg'    }  }}

Grunt-contrib-imagemin image Compression

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.