LibRSVG is a SVG rendering library, which parses SVG files and renders them in various formats. The formats include:
- PNG
- SVG
- Raw memory buffer image
This repository is fork of https://github.com/2gis/node-rsvg with prebuilt binaries. It will be rebased on a regular basis. After spending days on getting the compilation to work under windows, i decided to publish prebuilt binaries of this project.
Currently available binary releases are:
Node ABI Version | win32(ia32) | win32(x64) | darwin(x64) | linux(ia32) | linux(x64) |
---|---|---|---|---|---|
62 | ✅ | ✅ | ✅ | ✅ | ✅ |
67 | ✅ | ✅ | ✅ | ✅ | ✅ |
64 | ✅ | ✅ | ✅ | ✅ | ✅ |
59 | ✅ | ✅ | ✅ | ✅ | ✅ |
57 | ✅ | ✅ | ✅ | ✅ | ✅ |
51 | ✅ | ✅ | ✅ | ✅ | ✅ |
48 | ✅ | ✅ | ✅ | ✅ | ✅ |
47 | ✅ | ✅ | ✅ | ✅ | ✅ |
electron-v5.0.* | ✅ | ✅ | ✅ | ✅ | ✅ |
electron-v4.0.* | ✅ | ✅ | ✅ | ✅ | ✅ |
electron-v3.0.* | ✅ | ✅ | ✅ | ✅ | ✅ |
electron-v1.8.* | ✅ | ✅ | ✅ | ✅ | ✅ |
electron-v1.7.* | ✅ | ✅ | ✅ | ✅ | ✅ |
electron-v1.6.* | ✅ | ✅ | ✅ | ✅ | ✅ |
electron-v1.5.* | ✅ | ✅ | ✅ | ✅ | ✅ |
electron-v1.4.* | ✅ | ✅ | ✅ | ✅ | ✅ |
electron-v1.3.* | ✅ | ✅ | ✅ | ✅ | ✅ |
electron-v1.2.* | ✅ | ✅ | ✅ | ✅ | ✅ |
electron-v1.1.* | ✅ | ✅ | ✅ | ✅ | ✅ |
electron-v1.0.* | ✅ | ✅ | ✅ | ✅ | ✅ |
You have a cool idea/feature/pull request? Great! Currently the prebuilt binaries are generated against librsvg 2.40.16 so if you plan to use features, please consider compability with at least this version, so the builds won't fail and i don't have to rebuild gtk ;)
Here is a simple example. Look in index.js
for more documentation.
var Rsvg = require('librsvg-prebuilt').Rsvg;
var fs = require('fs');
// Create SVG render instance.
var svg = new Rsvg();
// When finishing reading SVG, render and save as PNG image.
svg.on('finish', function() {
console.log('SVG width: ' + svg.width);
console.log('SVG height: ' + svg.height);
fs.writeFile('tiger.png', svg.render({
format: 'png',
width: 600,
height: 400
}).data);
});
// Stream SVG file into render instance.
fs.createReadStream('tiger.svg').pipe(svg);
Before v0.6.0 in case of error getBaseURI
returned null
.
Since v0.6.0 possibly breaking change was introduced: now getBaseURI
method always returns string. In case of error an empty string is returned, so it might affect user code that relies on strict equality to null
.
If you are not using windows, you nees to install the librsvg library first. You can find instructions for different operating systems below. After that, you simply run:
npm install librsvg-prebuilt
Library versions known to work:
- LibRSVG 2.40.16+
- Cairo 1.8.8+
sudo apt-get install librsvg2-bin
sudo yum install librsvg2-bin
brew install librsvg
If, after installing LibRSVG through homebrew you are experiencing issues installing this module, try manually exporting the package config with this command:
export PKG_CONFIG_PATH=/opt/X11/lib/pkgconfig
Then try reinstalling this module. For further information, see this thread.
All nessecary files are bundled in the binary