A small SVG to image converter. Works in browser or PhantomJS.
var simg = new Simg(svgElement);
// Replace the current SVG with an image version of it.
simg.replace();
// And trigger a download of the rendered image.
simg.download();
The example page in this repo is also hosted at http://krunkosaurus.github.io/simg/
You can install this code in your project in 3 ways:
- Clone this git repo.
bower install simg
- Download the latest uncompressed or compressed src directly.
Simg.toString(svg)
- Returns SVG as HTML content. Used internally.
Simg.toCanvas(cb)
- Return canvas element with this SVG drawn inside. Used internally. Callback is optional.
Simg.toSvgImage(cb)
- Creates an image with the SVG data. Used internally. Callback runs on image load.
Simg.toImg(cb)
- Converts svg in to an image. Called the cb once the image is loaded so that you can place it anywhere.
Simg.replace(svg)
- Shortcut to replace the SVG with an image version.
Simg.toBinaryBlog(svg)
- Internal method for getting blob data.
Simg.download(filename)
- Shortcut method for triggering a browser download of the SVG as an image (.png). You can pass optional filename. Default is 'chart'.
Simg.noConflict()
- Allows you to move the Simg class from the global window to inside your own JavaScript library.
Simg.getBase64Image(imgReference)
- Converts an image to base64 encoding so that we can display it inline.
- Git clone this repo
npm install
grunt
- Shortcut for running both grunt uglify
and grunt lint
.
grunt uglify
- Convert source file to compressed file.
grunt lint
- Run source file through jshint
- Many SVG's have transparent backgrounds that look white because of the website under it. Be sure to set a white background in your SVG if you want it in your image.
- Simg works best with SVG or Canvas elements that have a fixed width and height. Percentages occasionally cause issues. If someone is feeling up to it, a helper function can be added that converts a % width/height SVG or Canvas element to its fixed pixel equivalent before conversion. One day I'll get around to doing it.
Thanks to the following contributors:
- @clemsos - Suggesting naming download file and adding support for non-latin characters ie. Chinese.
- @headwinds - Creating example page.
- @brightrain - For Firefox workaround.
- @B3rn475 - Fixed problem when the svg tag is not the only child.