Image cropper

Adds an overlay to the canvas for retrieving the image url for the selected area.
Installation
You can find production-ready build artifacts in the releases section.
Alternatively, you can use npm
to install the artifacts:
$ npm install @dbmdz/mirador-imagecropper
If you have a Java Web-Application managed with mvn
, there is also a WebJar, which can be included as follows:
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>dbmdz__mirador-imagecropper</artifactId>
<version>{set to current version}</version>
</dependency>
Usage
- enable the plugin by including the CSS and the JavaScript (after loading Mirador):
<link rel="stylesheet" type="text/css" href="<url to the plugin>/imageCropper.min.css" />
...
<script src="<url to the plugin>/imageCropper.min.js"></script>
-
include the ShareButtons extension - the usage is explained in the corresponding README - if you want to have some share buttons displayed in the modal dialog
-
configure the behaviour of the plugin with the imageCropper
configuration key:
var mirador = Mirador({
...
imageCropper: {
activeOnStart: true,
roundingPrecision: 3,
showLicense: true,
showShareButtonsInfo: true
}
...
});
NOTE: The configuration key showShareButtonsInfo
is only evaluated, if you have also included the ShareButtons extension.
Demo
