Iamsdt / annotorious

A JavaScript library for annotation

Home Page:http://recogito.github.io/annotorious

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool



A JavaScript image annotation library. Add drawing, commenting and labeling functionality to images in Web pages with just a few lines of code.

Motivation of this modification:

Using this project we can annotate on any image. But we need something custom, we want to render some rectangular on pdf file (File Viewer). To solve this issue, we used this library and modify some portions to make things work on the div.

Problem statement:

<div id="hallstatt">
    <img src="640px-Hallstatt.jpg" />
</div>

if we pass the id of div instead of image, then we can render the box but not those boxes aren't resizable.

Solution:

var anno = Annotorious.init({
        image: 'hallstatt',
        height: 500,
        width: 500,
});

pass height and width manually, if you are using other components instead of img.

Build Project

To build this project, run

npm run build

To import this thing into React App, use this line

import {Annotorious} from '@recogito/annotorious/dist/annotorious.min';
import '@recogito/annotorious/dist/annotorious.min.css';

That's it. we are done

See the project website for details and live demos.

Installing

If you use npm, npm install @recogito/annotorious and

import { Annotorious } from '@recogito/annotorious';

import '@recogito/annotorious/dist/annotorious.min.css';

const anno = new Annotorious({ image: 'hallstatt' }); // image element or ID

Otherwise download the latest release and include it in your web page.

<link rel="stylesheet" href="annotorious.min.css">
<script src="annotorious.min.js"></script>

Using

<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.min.js"></script>
</body>

Full documentation is on the project website. Questions? Feedack? Feature requests? Join the Annotorious chat on Gitter.

Join the chat at https://gitter.im/recogito/annotorious

License

BSD 3-Clause (= feel free to use this code in whatever way you wish. But keep the attribution/license file, and if this code breaks something, don't complain to us :-)

Who's Using Annotorious

NHS Wales Logo   MicroPasts Logo

Using Annotorious? Let us know!

About

A JavaScript library for annotation

http://recogito.github.io/annotorious

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:JavaScript 84.0%Language:HTML 13.0%Language:CSS 1.5%Language:SCSS 1.4%Language:Shell 0.0%