rsvg
Version:
Parse SVG files and render them as PNG, PDF, SVG, or raw memory buffer images.
82 lines (54 loc) • 1.89 kB
Markdown
**LibRSVG** is a SVG rendering library, which parses SVG files and renders them in various formats. The formats include:
* PNG
* PDF
* SVG
* Raw memory buffer image
[](https://travis-ci.org/walling/node-rsvg)
Here is a simple example. Look in `index.js` for more documentation.
```javascript
var Rsvg = require('rsvg').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);
```
First install the LibRSVG library and header files. Usually you have to look for a *development* package version. You must also have a functioning build tool chain including `pkg-config`. You can find instructions for different operating systems below. After that, you simply run:
```bash
npm install rsvg
```
Library versions known to work:
* LibRSVG 2.26+
* Cairo 1.8.8+
```bash
sudo apt-get install librsvg2-dev
```
```bash
sudo yum install librsvg2-devel
```
```bash
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:
```bash
export PKG_CONFIG_PATH=/opt/X11/lib/pkgconfig
```
Then try reinstalling this module. For further information, [see this thread](https://github.com/Homebrew/homebrew/issues/14123).
N/A; pull requests are accepted!