|
|
|
|
|
|
|
<title>JavaScript <=> PaperScript example</title>
|
|
|
|
|
|
|
|
<code mode="text/html">
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<script type="text/javascript" src="paper.js"></script>
|
|
|
|
<script type="text/javascript" src="connected-lines.js" canvas="canvas"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function draw() {
|
|
|
|
paper.project.clear();
|
|
|
|
var grp = connected_lines();
|
|
|
|
grp.scale(500, new Point(0,0));
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_svg() {
|
|
|
|
return paper.project.exportSVG({asString: true});
|
|
|
|
}
|
|
|
|
|
|
|
|
window.onload = function() {
|
|
|
|
paper.install(window);
|
|
|
|
paper.setup(document.getElementById('canvas'));
|
|
|
|
draw();
|
|
|
|
|
|
|
|
document.getElementById('download-svg').addEventListener('click', function() {
|
|
|
|
var svgdata = 'data:image/svg+xml;utf8,' + encodeURIComponent(get_svg());
|
|
|
|
var a = document.createElement('a');
|
|
|
|
a.download = 'export.svg';
|
|
|
|
a.href = svgdata;
|
|
|
|
document.body.appendChild(a);
|
|
|
|
a.click();
|
|
|
|
});
|
|
|
|
|
|
|
|
document.getElementById('draw').addEventListener('click', function() {
|
|
|
|
draw();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<canvas id="canvas" style="width: 500px; height: 500px;" resize></canvas>
|
|
|
|
<hr>
|
|
|
|
<button id="download-svg">download svg</button>
|
|
|
|
<button id="draw">draw</button>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|