Wmf2canvas Save

Convert WMF/EMF (Windows Metafile) image file to HTML5 canvas by using pure javascript.

Project README

wmf2canvas

MIT License

Convert WMF (Windows Metafile) image file to HTML5 canvas by using pure javascript.

Online Demo

http://g21589.github.io/wmf2canvas

Usage

<input type="file" id="file" accept="image/x-wmf" />
<canvas id="canvas"></canvas>

<script>
let wmf = new WMFConverter();   // new the WMFConverter object
	
let canvas = document.getElementById("canvas");
let file = document.getElementById("file");
	
file.onchange = function() {
	let filename = this.files[0];
	wmf.toCanvas(filename, canvas); // load the wmf file and convert to canvas graph
}
</script>

Version

0.9.1

License

MIT

Open Source Agenda is not affiliated with "Wmf2canvas" Project. README Source: g21589/wmf2canvas
Stars
33
Open Issues
6
Last Commit
2 years ago
Repository

Open Source Agenda Badge

Open Source Agenda Rating