Created
February 16, 2017 16:51
-
-
Save psbolden/49fa36c71fe72fff7ef7a7bb61c0d1c9 to your computer and use it in GitHub Desktop.
Fabric JS to SVG, PNG, Object
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
Source: | |
HTML | |
_____ | |
<canvas id="c" width="300" height="300"></canvas> | |
CSS | |
_____ | |
canvas { | |
border: 1px solid #999; | |
} | |
JS | |
_____ | |
// Do some initializing stuff | |
fabric.Object.prototype.set({ | |
transparentCorners: false, | |
cornerColor: 'rgba(102,153,255,0.5)', | |
cornerSize: 12, | |
padding: 5 | |
}); | |
// initialize fabric canvas and assign to global windows object for debug | |
var canvas = window._canvas = new fabric.Canvas('c'); | |
canvas.add(new fabric.Circle({ | |
radius: 50, | |
left: 100, | |
top: 100, | |
fill: '#0B61A4' | |
})); | |
canvas.add(new fabric.Triangle({ | |
width: 150, | |
height: 100, | |
left: 160, | |
top: 200, | |
fill: '#00AF64' | |
})); | |
// Normal SVG output | |
fabric.log('Normal SVG output: ', canvas.toSVG()); | |
// SVG output without preamble | |
fabric.log('SVG output without preamble: ', canvas.toSVG({ | |
suppressPreamble: true | |
})); | |
// SVG output with viewBox attribute | |
fabric.log('SVG output with viewBox attribute: ', canvas.toSVG({ | |
viewBox: { | |
x: 80, | |
y: 80, | |
width: 250, | |
height: 250 | |
} | |
})); | |
// Canvas toObject | |
fabric.log('Object output: ', canvas.toObject()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment