Created
July 14, 2017 22:04
-
-
Save bignimbus/3894a7c2358c63afcbde77866b50692c to your computer and use it in GitHub Desktop.
Crop an SVG
This file contains hidden or 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
// modified from https://stackoverflow.com/a/22650574 | |
function cropSVG () { | |
var mySVG = document.querySelector('svg'); | |
var bb = mySVG.getBBox(); | |
var vb = [bb.x, bb.y, bb.width, bb.height]; | |
mySVG.setAttribute("viewBox", vb.join(" ")); | |
copy(mySVG.outerHTML); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment