Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Snap.svg vs Svg.js</title>
  <script src="https://rawgithub.com/wout/svg.js/master/dist/svg.js"></script>
  </head>
  <body>
    <div id="drawing"></div>
    <script>
    // create svg drawing
    var draw = SVG('drawing');
    // create image
    var image = draw.image('http://www.svgjs.com/images/shade.jpg');
    image.size(600, 600).y(-150);
    // create text
    var text = draw.text('SVG.JS').move(300, 0);
    text.font({
      family: 'Source Sans Pro',
      size: 180,
      anchor: 'middle',
      leading: '1em'
    });
    // clip image with text
    image.clipWith(text);
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers