mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
609 B
HTML
25 lines
609 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
function go() {
|
|
var canvas = document.getElementById("canvas");
|
|
var ctx = canvas.getContext("2d");
|
|
var image = document.getElementById("image");
|
|
|
|
// Draw the SVG image
|
|
ctx.drawImage(image, 0, 0);
|
|
|
|
try {
|
|
canvas.toDataURL();
|
|
} catch (ex) {
|
|
document.body.textContent = ex;
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="go()">
|
|
<canvas id="canvas" width="200" height="200"></canvas>
|
|
<img id="image" src="lime100x100.svg" style="display: none">
|
|
</body>
|
|
</html>
|