Skip to content

Instantly share code, notes, and snippets.

@bignimbus
Created July 14, 2017 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bignimbus/3894a7c2358c63afcbde77866b50692c to your computer and use it in GitHub Desktop.
Save bignimbus/3894a7c2358c63afcbde77866b50692c to your computer and use it in GitHub Desktop.
Crop an SVG
// 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