dezoomify-rs 2.9.4

Allows downloading zoomable images. Supports several different formats such as zoomify, iiif, and deep zoom images.
Documentation
<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>Image Viewer</title>
    <style>
#viewer {
  min-height: 300px;
  height: 95vh;
}
    </style>
</head>
<body>

<div id="viewer"></div>

<script>
/*DEZOOMIFY_SEADRAGON*/

OpenSeadragon({
	id:              "viewer",
	prefixUrl:       "https://openseadragon.github.io/openseadragon/images/",
	tileSources: {/*DEZOOMIFY_TILE_SOURCE*/}
});
</script>

</body>
</html>