From bc0c97ac2215670373c29b4845a351dd9984258d Mon Sep 17 00:00:00 2001 From: Stephen Fraser Date: Tue, 9 Apr 2024 19:38:46 +0100 Subject: [PATCH] Updated readme --- README.md | 149 ++++++++++++++++-- src/image-3/index.ts | 3 +- .../serialize/image-service-request-info.ts | 7 + 3 files changed, 149 insertions(+), 10 deletions(-) create mode 100644 src/image-3/serialize/image-service-request-info.ts diff --git a/README.md b/README.md index bab55d4..86d9dfc 100644 --- a/README.md +++ b/README.md @@ -4,18 +4,34 @@ npm i @iiif/parser ``` -### 2->3 Converter +This is a parser and set of low-level utilities for the following IIIF Specifications: -This is available as a standalone bundle. (~4kb gzipped) +- [IIIF Presentation 3](https://iiif.io/api/presentation/3.0/) (current) +- [IIIF Image 3](https://iiif.io/api/image/3.0/) (current) +- [IIIF Presentation 2](https://iiif.io/api/presentation/2.1/) -```js -import { convertPresentation2 } from '@iiif/parser/presentation-2'; +These include: +- [W3C Annotations](https://www.w3.org/TR/annotation-model/) +- [Open Annotations](https://iiif.io/api/annex/openannotation/) -const p3Manifest = convertPresentation2(p2Manifest); -``` + +### Features +The features of this library are focussed on encoding the structure of all types of IIIF and providing utilities for extracting data from the IIIF or converting it into another format that is easier to develop with. The aim of the parser is to maximize the IIIF compatibility of other tools built on top of it. + +#### IIIF Presentation 3 + +- **Empty types** for each resource (e.g. Manifest, Canvas) which can be used as starting points for creating IIIF +- **Traverse** utility for walking through IIIF documents and running code at different "types" +- **Normalize** utility which will: + - Add default empty defaults (null or empty array) + - Organize by type into Records + - Replace nested with references using ID/Type or SpecificResources +- **Serializers** which take normalized data and output it again + - **Presentation v3 serializer**- outputs well-formed Presentation 3 JSON + - **Presentation v2 serializer** - outputs good-enough Presentation 2 JSON (missing features). +- **Strict Upgrader** utility which can automatically fix Presentation 3 JSON that has issues. -### Basic usage ```js import { Traverse } from '@iiif/parser'; @@ -23,13 +39,128 @@ import { Traverse } from '@iiif/parser'; // import { Traverse } from '@iiif/parser/presentation-2'; const ids = []; -const extractCanvasLabsl = new Traverse({ +const extractCanvasLabels = new Traverse({ Canvas: [(canvas) => { ids.push(canvas.id); // string }], }); -extractCanvasLabsl.traverseUnknown(loadSomeManifest()); +extractCanvasLabels.traverseUnknown(loadSomeManifest()); console.log(ids); // all canvas ids. ``` + +#### IIIF Presentation 2 +- **Traverse** utility for walking through IIIF v2 documents and running code at different "types" +- **Upgrader** utility built on-top of the Traverse utility for upgrading IIIF v2 to IIIF v3. + +The intention for IIIF Presentation 2 is to upgrade it to 3 and then work with that. The tooling will always offer and upgrade to the latest version and tools on top of that. + +```ts +import { Traverse, convertPresentation2 } from '@iiif/parser/presentation-2'; + +convertPresentation2(p2); // to latest IIIF version + +const logAnnotations = new Traverse({ + // Every type is a key on this record, with an array of functions to call + Annotation: [ + anno => { + console.log(anno['@id']); + + // Optionally return to replace the resource. + } + ] +}); + +logAnnotations.traverseManifest(someInputManifest); // Logs all annotation IDs. + +// Also an "all" traversal. +const logAllIds = Traverse.all(resource => console.log(resource['@id'])); + +logAllIds.traverseUnknown(someInput); + +``` + + +#### Image 3 + +The Image 3 parser is adapted from an Image Server implementation, and supports: + +- Parsing of IIIF Image API request URLs (including info.json) + - Extracting region + - Extracting rotation + - Extracting size + - Extracting quality + - Extracting format +- Parsing of IIIF profiles, and feature detection + - `isLevel0(service)` + - `supports(service, { extraQualities: ['grey'] })` helper which accepts a service and partial service to compare + - `imageServiceSupportsRequest()` helper that can validate IIIF image requests before you make them +- Serializing of IIIF Image requests + - A custom structure for defining `region`, `size`, `quality` etc. and then creating a IIIF Image request URL. + - Support for Image 2.1 servers +- Handful of utilities for IIIF Image 3 + - extracting fixes sized images from an image service + - extracting fixed sizes from scale factors (full tiles) + - `canonicalServiceUrl()`, `getId()`, `getType()` and `isImageService()` for compatibility and validation + +```ts +import { parseImageServiceRequest, imageServiceRequestInfo } from '@iiif/parser/image-3'; +import { ImageService } from '@iiif/presentation-3'; + +const parsed = parseImageServiceRequest( + 'https://munch.emuseum.com/apis/iiif/image/v2/17261/full/max/0/default.jpg', + // Optionally provide a path, so the identifier can be extracted + 'apis/iiif/image/v2' +); + +// { +// "format": "jpg", +// "identifier": "17261", +// "originalPath": "/17261/full/max/0/default.jpg", +// "prefix": "apis/iiif/image/v2", +// "quality": "default", +// "region": { +// "full": true, +// }, +// "rotation": { +// "angle": 0, +// }, +// "scheme": "https", +// "server": "munch.emuseum.com", +// "size": { +// "confined": false, +// "max": true, +// "serialiseAsFull": false, +// "upscaled": false, +// }, +// "type": "image", +// } + +// Can be changed. +parsed.rotation.angle = 90; + +const imageUrl = imageServiceRequestToString(parsed); +// https://munch.emuseum.com/apis/iiif/image/v2/17261/full/max/90/default.jpg + +const infoJson = imageServiceRequestInfo(parsed); +// https://munch.emuseum.com/apis/iiif/image/v2/17261/info.json + + +const imageService: ImageService = await fetch(infoJson).then(r => r.json()); + +// Likely true - as its supported by level0, level1 and level2 +const supportsSizes = supports(imageService, { + extraFeatures: ['sizeByWhListed'] +}); +``` + +### Upgrader standalone + +Upgrades IIIF JSON to the latest IIIF Presentation version (current: 3). + +```ts +import { upgrade } from '@iiif/parser/upgrader'; + +upgrade(presentation2Manifest); // Presentation 3 Manifest or Collection +``` \ No newline at end of file diff --git a/src/image-3/index.ts b/src/image-3/index.ts index 74e4418..aa80259 100644 --- a/src/image-3/index.ts +++ b/src/image-3/index.ts @@ -14,6 +14,7 @@ export * from './profiles/supports-custom-sizes'; export * from './profiles/image-service-supports-format'; export * from './profiles/image-service-supports-request'; export * from './serialize/image-service-request-to-string'; +export * from './serialize/image-service-request-info'; export * from './serialize/region-parameter-to-string'; export * from './serialize/rotation-parameter-to-string'; export * from './serialize/size-parameter-to-string'; @@ -23,4 +24,4 @@ export * from './utilities/extract-fixed-size-scales'; export * from './utilities/fixed-sizes-from-scales'; export * from './utilities/get-id'; export * from './utilities/get-type'; -export * from './utilities/is-image-service'; +export * from './utilities/is-image-service'; \ No newline at end of file diff --git a/src/image-3/serialize/image-service-request-info.ts b/src/image-3/serialize/image-service-request-info.ts new file mode 100644 index 0000000..c9ac65b --- /dev/null +++ b/src/image-3/serialize/image-service-request-info.ts @@ -0,0 +1,7 @@ +import { ImageService } from "@iiif/presentation-3"; +import { ImageServiceImageRequest } from "../types"; +import { imageServiceRequestToString } from "./image-service-request-to-string"; + +export function imageServiceRequestInfo(req: ImageServiceImageRequest, service?: ImageService): string { + return imageServiceRequestToString({ ...req, type: 'info' }, service); +} \ No newline at end of file