-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Richard Benjamin Allen
committed
May 9, 2024
1 parent
00f4fbe
commit 6e52ad5
Showing
70 changed files
with
27,528 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,77 @@ | ||
# iiif-static-choices | ||
A IIIF static tile and manifest generator built using Python to generate IIIF tiled images and manifests. This application was put together to de-mystify the process of creating and hosting IIIF content and allow implementations without the need for specialist infrastructure such as imaging servers (iip) and manifest servers. | ||
iiif-static-choices | ||
=== | ||
|
||
A IIIF static tile and manifest generator built using Python to generate IIIF tiled images and manifests. | ||
|
||
This application was put together to de-mystify the process of creating and hosting IIIF content and allow implementations | ||
without the need for specialist infrastructure such as imaging servers (iip) and manifest servers. | ||
|
||
It also includes the Bodleian Libraries Mirador plug-in written as part of the ARCHiOx project and the Mirador image-tools | ||
plug-in and is also intended as a vehicle to test the capabilities of using 2D images to encode and present 3D information. | ||
|
||
A simple Python server application is included to serve the Mirador or Openseadragon via your local browser, it is not | ||
intended for a production environment and would need replacing with something else more suitable for the job. | ||
|
||
Licensing | ||
=== | ||
|
||
This project is covered by the [Mozilla Public License](LICENSE) except for the bundled [Mirador](https://github.com/ProjectMirador/mirador?tab=Apache-2.0-1-ov-file#readme) and [Openseadragon](https://github.com/openseadragon/openseadragon?tab=BSD-3-Clause-1-ov-file#readme) builds | ||
which are covered by their own licenses. | ||
|
||
The tile generation part of this project is based on and translated from the work of Glen Robson in his Java [iiif-tiler](https://github.com/glenrobson/iiif-tiler) | ||
|
||
Dependencies | ||
=== | ||
|
||
- Python 3.9 | ||
- Poetry | ||
|
||
Installation Instructions | ||
=== | ||
|
||
Install the project after installing Python and Poetry, as follows: | ||
|
||
```bash | ||
poetry install --no-root | ||
``` | ||
|
||
Basic Instructions | ||
=== | ||
|
||
For this quick guide we'll be using the existing example images and manifest-config.yml files present in the `image` directory. | ||
|
||
1. Run the tile generation as follows, this will generate v3 static tiles in the `iiif/image` folder: | ||
|
||
```bash | ||
poetry run python iiif_generator.py tiles -t 256 -v 3.0 | ||
``` | ||
2. Run the manifest generator as follows, this will generate a v3 manifest in the `iiif/manifest` folder: | ||
|
||
```bash | ||
poetry run python iiif_generator.py manifest -f ammonite-config.yml -o pyritised-ammonite.json | ||
``` | ||
|
||
3. Run the basic server application as follows: | ||
|
||
```bash | ||
poetry run python server 8000 | ||
``` | ||
|
||
Using your own images and manifest-config.yml | ||
=== | ||
|
||
To use your own images and manifest-config.yml do the following: | ||
|
||
1. Copy your image files into the project directory called `image`. | ||
|
||
2. Create a manifest_config.yml file from the template provided, add real values to this and copy this to the `image` directory too. You can find a populated one in `image` for reference. Or skip ahead and use the examples already there. | ||
|
||
3. Run through the steps in [Basic Instructions](#basic-instructions) again. | ||
|
||
Todo | ||
=== | ||
|
||
- add in thumbnail generation for the choices layers in Mirador, this could be done during manifest generation | ||
- add in logo generation | ||
- add in multi-page manifests | ||
- add some unit tests to prevent development breaking |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*.jpg | ||
*.jpeg | ||
*.png | ||
*.webp | ||
*.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,211 @@ | ||
#!/usr/bin/python3 | ||
""" | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
Copyright © 2024 Bodleian Libraries | ||
""" | ||
|
||
import argparse | ||
import logging.config | ||
|
||
import os | ||
import sys | ||
import yaml | ||
|
||
from typing import Dict, List | ||
from tiler.info_json import VERSION211 | ||
from manifest.manifest import Manifest, ManifestError | ||
from tiler.tiler import Tiler | ||
|
||
log_config: Dict = yaml.full_load(open('logging.yml', 'r')) | ||
logging.config.dictConfig(log_config) | ||
log = logging.getLogger('iiif-generator') | ||
|
||
|
||
def main(arguments) -> bool: | ||
""" | ||
Function performs one of two possible options, generating static IIIF tiled images or a manifest. | ||
:param arguments: argparse.Namespace containing the arguments passed into the iiif_generator program. | ||
:return: True if successful | False if there is an error. | ||
""" | ||
|
||
if arguments.command == "tiles": | ||
max_file_no: int = -1 | ||
|
||
# find files | ||
input_files: List = [] | ||
for image in os.listdir(arguments.input_directory): | ||
if image.endswith((".png", ".jpg", "webp")): | ||
input_files.append(os.path.join(arguments.input_directory, image)) | ||
|
||
if not input_files: | ||
log.error("No image files to process in input directory: s%", arguments.input_directory) | ||
return False | ||
|
||
tiler = Tiler() | ||
|
||
tiling_success: List = tiler.create_images( | ||
input_files, | ||
arguments.output, | ||
arguments.identifier, | ||
arguments.zoom_levels, | ||
max_file_no, | ||
arguments.tile_size, | ||
arguments.version | ||
) | ||
|
||
if tiling_success: | ||
return True | ||
|
||
if arguments.command == "manifest": | ||
|
||
config_path: str = str(os.path.join(arguments.input_directory, arguments.file_name)) | ||
|
||
if not os.path.exists(config_path): | ||
log.error("Config file: s% does not exist", config_path) | ||
return False | ||
|
||
manifest_success = Manifest(arguments.host_name, config_path) | ||
|
||
if not manifest_success: | ||
log.error("Manifest generation failed") # try and improve this, we need to probably raise errors elsewhere | ||
return False | ||
|
||
try: | ||
manifest_success.to_json(arguments.output) | ||
return True | ||
except ManifestError as error: | ||
log.error( | ||
"Manifest generation failed at the json file output stage due to the following error: %s", | ||
error | ||
) | ||
return False | ||
|
||
|
||
if __name__ == "__main__": | ||
parent_parser = argparse.ArgumentParser( | ||
description="Python terminal application to create static tiles and manifest for a IIIF viewer, the code was " | ||
"translated from the Java version written by Glen Robson of IIIF fame to avoid having to require " | ||
"a JRE and also make it easier to modify for Python developers.", | ||
add_help=False | ||
) | ||
|
||
parser = argparse.ArgumentParser() | ||
|
||
sub_parsers = parser.add_subparsers( | ||
dest="command", | ||
required=True | ||
) | ||
|
||
manifest = sub_parsers.add_parser( | ||
"manifest", | ||
parents=[parent_parser], | ||
help="Generate a IIIF static manifiest from a directory of images and a yml file." | ||
) | ||
|
||
tile = sub_parsers.add_parser( | ||
"tiles", | ||
parents=[parent_parser], | ||
help="Generate IIIF static tiles from a directory of images" | ||
) | ||
|
||
# add an argument | ||
tile.add_argument( | ||
"-i", | ||
"--identifier", | ||
type=str, | ||
default="http://0.0.0.0:8000/iiif/", | ||
help="Set the identifier in the info.json. The default is http://0.0.0.0:8000/iiif" | ||
) | ||
|
||
tile.add_argument( | ||
"-z", | ||
"--zoom_levels", | ||
type=int, | ||
default=5, | ||
help="Set the number of zoom levels for this image. Default is 5" | ||
) | ||
|
||
tile.add_argument( | ||
"-v", | ||
"--version", | ||
type=str, | ||
default=VERSION211, | ||
help="Set the IIIF version. Default is 2.1.1 and the options are 2.1.1 or 3" | ||
) | ||
|
||
tile.add_argument( | ||
"-t", | ||
"--tile_size", | ||
type=int, | ||
default=1024, | ||
help="Set the tile size. Default is 1024" | ||
) | ||
|
||
tile.add_argument( | ||
"-o", | ||
"--output", | ||
type=str, | ||
default="iiif", | ||
help="Directory where the IIIF images are generated. Default is: /iiif" | ||
) | ||
|
||
tile.add_argument( | ||
"-d", | ||
"--input_directory", | ||
type=str, | ||
default="image", | ||
help="Directory where the images to tile are situated. Default is: /image" | ||
) | ||
|
||
manifest.add_argument( | ||
"-o", | ||
"--output", | ||
type=str, | ||
default="manifest.json", | ||
help="Directory where the IIIF manifest is generated. Default is: /iiif/manifest/manifest.json" | ||
) | ||
|
||
manifest.add_argument( | ||
"-d", | ||
"--input_directory", | ||
type=str, | ||
default="image", | ||
help="Directory where the images to tile are situated. Default is: /image" | ||
) | ||
|
||
manifest.add_argument( | ||
"-f", | ||
"--file_name", | ||
type=str, | ||
required=True, | ||
help="Filename where the manifest config.yml is stored. A value is required" | ||
) | ||
|
||
manifest.add_argument( | ||
"-s", | ||
"--host_name", | ||
type=str, | ||
default="http://0.0.0.0:8000", | ||
help="Host name for the URL/URIs in the manifest" | ||
) | ||
|
||
args = parser.parse_args() | ||
success: bool = False | ||
|
||
try: | ||
success = main(args) | ||
if success: | ||
log.info(f"IIIF {args.command} generated!") | ||
else: | ||
log.error(f"IIIF {args.command} failed!") | ||
except BaseException: | ||
log.error("Unhandled exception in iiif_generator", exc_info=True) | ||
raise | ||
|
||
if success: | ||
sys.exit() | ||
else: | ||
sys.exit(1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.jpg | ||
.jpeg | ||
.png | ||
.webp |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
full_shelfmark: "Pyritised Ammonite" | ||
summary: "An RTI of a pyritised ammonite" | ||
object_id: "pyritised-ammonite" | ||
object_label: "Pyritized Ammonite" | ||
provider_id: "richard-benjamin-allen" | ||
provider_name: "Richard Benjamin Allen" | ||
logo_image_id: "example-logo" | ||
language: "en" | ||
thumbnail_image_id: "pyritised_ammonite_thumb" | ||
html_terms: "<span>Terms of use</span>" | ||
range: "1" | ||
|
||
metadata: | ||
Title: "Pyritised Ammonite" | ||
Shelfmark: "Pyritised Ammonite" | ||
Description: "An RTI of pyritised ammonite" | ||
|
||
part_of: | ||
fossils: "Richard Benjamin Allen's Fossils" | ||
|
||
items: | ||
canvas_id: "pyritised-ammonite" | ||
folio: "Lateral right side view" | ||
preferred_image: "ammonite-albedo.png" | ||
images: | ||
- image_id: "ammonite-albedo" | ||
map_type: "albedo" | ||
- image_id: "ammonite-normals" | ||
map_type: "normal" |
Oops, something went wrong.