Annotorious 2
A JavaScript library for image annotation. Annotorious 2 is a
modernized reboot of the (now outdated) original
Annotorious.
!! Work in progress !!
Resources
Installing
If you use npm, npm install @recogito/annotorious
. Otherwise download the
latest release.
<script src="annotorious-2.0.1-alpha.min.js"></script>
Using
Make an image annotate-able with just a few lines of JavaScript.
<body>
<div id="content">
<img id="hallstatt" src="640px-Hallstatt.jpg">
</div>
<script>
(function() {
var anno = Annotorious.init({
image: 'hallstatt'
});
anno.loadAnnotations('annotations.w3c.json');
})()
</script>
<script type="text/javascript" src="annotorious-2.0.1-alpha.min.js"></script>
</body>