-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (31 loc) · 1004 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>wmf2svg</title>
<script src="wasm_exec.js"></script>
<script>
const go = new Go();
WebAssembly.instantiateStreaming(fetch("wmf.wasm"), go.importObject)
.then((result) => go.run(result.instance));
function parse() {
var input = window.document.getElementById("file")
if (input.files.length <= 0) {
return
}
var images = document.getElementById('images')
var reader = new FileReader();
reader.onload = function() {
var base64Svg = Wmf2Svg(reader.result)
images.innerHTML = '<img src="'+base64Svg+'" />'
}
reader.readAsDataURL(input.files[0]);
}
</script>
</head>
<body>
<input id="file" type="file" title="select a wmf file" onchange="parse()"/>
<div id="images">
</div>
</body>
</html>