Created
April 14, 2014 16:13
-
-
Save ricardoriogo/10661960 to your computer and use it in GitHub Desktop.
Convert SVG polygon element to path element.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var polys = document.querySelectorAll('polygon,polyline'); | |
[].forEach.call(polys,convertPolyToPath); | |
function convertPolyToPath(poly){ | |
var svgNS = poly.ownerSVGElement.namespaceURI; | |
var path = document.createElementNS(svgNS,'path'); | |
var points = poly.getAttribute('points').split(/\s+|,/); | |
var x0=points.shift(), y0=points.shift(); | |
var pathdata = 'M'+x0+','+y0+'L'+points.join(' '); | |
if (poly.tagName=='polygon') pathdata+='z'; | |
path.setAttribute('d',pathdata); | |
poly.parentNode.replaceChild(path,poly); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment