Bachir Soussi Chiadmi d5edfa75c8 main interface ok 10 years ago
..
node_modules d5edfa75c8 main interface ok 10 years ago
tasks d5edfa75c8 main interface ok 10 years ago
test d5edfa75c8 main interface ok 10 years ago
.jshintrc d5edfa75c8 main interface ok 10 years ago
.npmignore d5edfa75c8 main interface ok 10 years ago
Gruntfile.js d5edfa75c8 main interface ok 10 years ago
LICENSE.txt d5edfa75c8 main interface ok 10 years ago
README.md d5edfa75c8 main interface ok 10 years ago
package.json d5edfa75c8 main interface ok 10 years ago

README.md

grunt-svg2png

Grunt plugin to rasterize SVG to PNG images using PhantomJS

Getting Started

This plugin requires Grunt ~0.4.1

// Gruntfile.js configuration
grunt.loadNpmTasks('grunt-svg2png');

grunt.initConfig({
    svg2png: {
        all: {
            // specify files in array format with multiple src-dest mapping
            files: [
                // rasterize all SVG files in "img" and its subdirectories to "img/png"
                { cwd: 'img/', src: ['**/*.svg'], dest: 'img/png/' }
            ]
        }
    }
});

This task works well between SVGO Grunt and Grunt ImageOptim!

Updates

2014-06-23 pulled in path fix and option for use case without terminal. You may need to update your files config to include cwd and dest options.


Created by David Bushell | @dbushell

Copyright © 2013 David Bushell | MIT license