An extension to the Raphael Vector Library.
It enables Raphael to import raw SVG data.
This is a fork of raphael.svg-import. When the original raphael-svg-import reached 0.0.3, a major backwards-incompatible change was introduced. Instead of parsing SVG documents, it used regular expressions. This was undesirable for several reasons:
- Used regular expressions to parse XML. Rebuilding something that browsers can do natively.
- Loss of document structure. Groups (
<g>
) are lost. - Additional steps needed to load a svg file.
See demo.html for the full example. Use AJAX to retrieve your SVG file as an XML document. Then use importSVG() to convert the SVG into a raphael.js set:
jQuery(document).ready(function(){
jQuery.ajax({
type: "GET",
url: "assets/demo.svg",
dataType: "xml",
success: function(svgXML) {
var paper = Raphael(10, 10, 800, 600);
var newSet = paper.importSVG(svgXML);
}
});
});
If you want the Raphael paper dimensions to automatically match the SVG:
jQuery(document).ready(function(){
jQuery.ajax({
type: "GET",
url: "assets/demo.svg",
dataType: "xml",
success: function(svgXML) {
var root = svgXML.getElementsByTagName('svg')[0].getAttribute('viewBox').split(' ');
var width = root[2],
height = root[3];
var paper = Raphael(width, height);
var newSet = paper.importSVG(svgXML);
}
});
});
In the assets folder a demo.svg file is provided.
Nothing fancy but it gives you a starting point.
- Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
- Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
- Fork the project
- Start a feature/bugfix branch
- Commit and push until you are happy with your contribution
- Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
- You can contribute a broken test case without a fix
Copyright (c) 2012 Chris Chang Original Raphael SVG Import Copyright (c) 2009 Wout Fierens See LICENSE.txt for further details.
Visual test: Open tests/visual_tests.html
in your targeted browsers.
A hosted version can be found here.
I've tried keeping all the files as close to the original as possible. So there are lots of files not relevant to this fork in the tree.
There is a bug in the minified version of of Raphael.js that most people use. It's best to just grab the uncompressed source and minify it yourself.