HTMLcopy
1
<button onclick="saveAsPdf()">Save image</button>
2
<div id="container"></div>
CSScopy
9
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
7
button {
8
margin: 10px 0 0 10px;
9
}
JavaScriptcopy
x
1
var stage = acgraph.create('container');
2
3
stage.circle(300, 250, 200);
4
stage.rect(100, 50, 400, 400);
5
6
function saveAsPdf() {
7
8
// Saves into PDF file.
9
stage.saveAsPdf('a4', true, 100, 50, 'Circle');
10
}