-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into 0489-multimedia-canvas
- Loading branch information
Showing
7 changed files
with
152 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{% if include.viewers %} | ||
{% assign viewers = include.viewers | split: "," %} | ||
{% else %} | ||
{% assign viewers = page.viewers %} | ||
{% endif %} | ||
[JSON-LD]({{ include.iiif-content }}) {% for viewerTxt in viewers %}{% assign viewer = viewerTxt | strip %}| {% include viewer_link.html type=viewer manifest=include.iiif-content class="content-state" %}{% endfor %} | ||
|
||
{% if page.code %} | ||
{% include code_links.html %} | ||
{% endif %} | ||
|
||
<script> | ||
function encodeContentState(plainContentState) { | ||
let uriEncoded = encodeURIComponent(plainContentState); // using built in function | ||
let base64 = btoa(uriEncoded); // using built in function | ||
let base64url = base64.replace(/\+/g, "-").replace(/\//g, "_"); | ||
let base64urlNoPadding = base64url.replace(/=/g, ""); | ||
return base64urlNoPadding; | ||
} | ||
|
||
const links = document.getElementsByClassName("content-state"); | ||
|
||
Array.from(links).forEach(link => { | ||
link.title = "Generating iiif-content link...." | ||
fetch(link.dataset.iiifContent).then(response=> { | ||
response.json().then (anno => { | ||
const encoded = encodeContentState(JSON.stringify(anno)); | ||
|
||
if (/iiif-content=.*&/.test(link.href)){ | ||
link.href = link.href.replace(/iiif-content=.*&/, "iiif-content=" + encoded + '&'); | ||
} else { | ||
link.href = link.href.replace(/iiif-content=.*$/, "iiif-content=" + encoded); | ||
} | ||
link.title = ""; | ||
}) | ||
|
||
}); | ||
}); | ||
</script> |
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
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
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
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,14 @@ | ||
{ | ||
"@context": "http://iiif.io/api/presentation/3/context.json", | ||
"id": "https://example.org/import/1", | ||
"type": "Annotation", | ||
"motivation": ["contentState"], | ||
"target": { | ||
"id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2#xywh=1528,3024,344,408", | ||
"type": "Canvas", | ||
"partOf": [{ | ||
"id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", | ||
"type": "Manifest" | ||
}] | ||
} | ||
} |
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,95 @@ | ||
--- | ||
title: Open a specific region of a Canvas in a viewer | ||
id: 485 | ||
layout: recipe | ||
tags: [annotation, content-state] | ||
summary: "Allows users to use Content State API to open a specific region of a Canvas by means of supported viewers." | ||
viewers: | ||
topic: | ||
- content-state | ||
--- | ||
|
||
## Use Case | ||
|
||
I want to share a link to highlight a detail in a specific region of an image to share a portion of a digitized manuscript text, allowing the user easy access to the rest of the manuscript. | ||
|
||
Institutions might want to use this recipe to share portions of their object through social media, allowing a direct link to the viewer to improve the user's interaction with the digitized content. A scholar who finds a relevant passage in a manuscript might want to share the precise location with other colleagues, allowing them to check the original source. | ||
|
||
## Implementation Notes | ||
|
||
This request can be implemented in a standardized manner using the [IIIF Content State API](https://iiif.io/api/content-state), providing the data as values of the `iiif-content` query string parameter as explained in the [API section](https://iiif.io/api/content-state/1.0/#initialization-mechanisms-link). | ||
|
||
We can use the [Web Annotation Data Model](https://www.w3.org/TR/annotation-model/) to encode the information necessary, as shown in ["A Region of a Canvas in a Manifest"](https://iiif.io/api/content-state/1.0/#51-a-region-of-a-canvas-in-a-manifest) section of the standard. | ||
|
||
However, before passing the data as a query parameter, we must encode it as explained in the [Content State encoding guidelines](https://iiif.io/api/content-state/1.0/#6-content-state-encoding). | ||
|
||
In this example, we want to highlight a portion of an image contained in a book. We will use the following manifest shown in the Simple Manifest Book recipe, which is available at the following link: [https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json](https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json) | ||
|
||
We want to open the viewport to a specific Canvas region using a viewer available on the following page `https://example.org/viewer`. | ||
|
||
First, we create an Annotation: | ||
|
||
```json | ||
{ | ||
"@context": "http://iiif.io/api/presentation/3/context.json", | ||
"id": "https://example.org/import/1", | ||
"type": "Annotation", | ||
"motivation": ["contentState"], | ||
"target": { | ||
"id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2#xywh=1528,3024,344,408", | ||
"type": "Canvas", | ||
"partOf": [{ | ||
"id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", | ||
"type": "Manifest" | ||
}] | ||
} | ||
} | ||
``` | ||
|
||
We can create an Annotation with `motivation` set to `contentState` and a target `type` set to Canvas. The `id` of the target will contain a fragment selector (`#xywh=1528,3024,344,408`) with the coordinates of the Canvas we want to share, while the `partOf` element has the `id` of the Manifest containing the Canvas. | ||
|
||
We can now use one of the methods listed in the [examples of Content State encoding section](https://iiif.io/api/content-state/1.0/#63-examples-of-content-state-encoding) to generate a base64url string (**note: for brevity, we removed new line characters and white space before computing the base64url**). | ||
|
||
We can pass the encoded value, using the `iiif-content` query parameter of the viewer landing page: | ||
[https://example.org/viewer?iiif-content=JTdCJTIyJTQwY29udGV4dCUyMiUzQSUyMmh0dHAlM0ElMkYlMkZpaWlmLmlvJTJGYXBpJTJGcHJlc2VudGF0aW9uJTJGMyUyRmNvbnRleHQuanNvbiUyMiUyQyUyMmlkJTIyJTNBJTIyaHR0cHMlM0ElMkYlMkZleGFtcGxlLm9yZyUyRmltcG9ydCUyRjElMjIlMkMlMjJ0eXBlJTIyJTNBJTIyQW5ub3RhdGlvbiUyMiUyQyUyMm1vdGl2YXRpb24lMjIlM0ElNUIlMjJjb250ZW50U3RhdGUlMjIlNUQlMkMlMjJ0YXJnZXQlMjIlM0ElN0IlMjJpZCUyMiUzQSUyMmh0dHBzJTNBJTJGJTJGaWlpZi5pbyUyRmFwaSUyRmNvb2tib29rJTJGcmVjaXBlJTJGMDAwOS1ib29rLTElMkZjYW52YXMlMkZwMiUyM3h5d2glM0QxNTI4JTJDMzAyNCUyQzM0NCUyQzQwOCUyMiUyQyUyMnR5cGUlMjIlM0ElMjJDYW52YXMlMjIlMkMlMjJwYXJ0T2YlMjIlM0ElNUIlN0IlMjJpZCUyMiUzQSUyMmh0dHBzJTNBJTJGJTJGaWlpZi5pbyUyRmFwaSUyRmNvb2tib29rJTJGcmVjaXBlJTJGMDAwOS1ib29rLTElMkZtYW5pZmVzdC5qc29uJTIyJTJDJTIydHlwZSUyMiUzQSUyMk1hbmlmZXN0JTIyJTdEJTVEJTdEJTdE](https://example.org/) | ||
|
||
We can also create an anchor tag with the link as the `href` attribute for use in a web page: | ||
|
||
```html | ||
<a href="https://example.org/viewer?iiif-content=JTdCJTIyJTQwY29udGV4dCUyMiUzQSUyMmh0dHAlM0ElMkYlMkZpaWlmLmlvJTJGYXBpJTJGcHJlc2VudGF0aW9uJTJGMyUyRmNvbnRleHQuanNvbiUyMiUyQyUyMmlkJTIyJTNBJTIyaHR0cHMlM0ElMkYlMkZleGFtcGxlLm9yZyUyRmltcG9ydCUyRjElMjIlMkMlMjJ0eXBlJTIyJTNBJTIyQW5ub3RhdGlvbiUyMiUyQyUyMm1vdGl2YXRpb24lMjIlM0ElNUIlMjJjb250ZW50U3RhdGUlMjIlNUQlMkMlMjJ0YXJnZXQlMjIlM0ElN0IlMjJpZCUyMiUzQSUyMmh0dHBzJTNBJTJGJTJGaWlpZi5pbyUyRmFwaSUyRmNvb2tib29rJTJGcmVjaXBlJTJGMDAwOS1ib29rLTElMkZjYW52YXMlMkZwMiUyM3h5d2glM0QxNTI4JTJDMzAyNCUyQzM0NCUyQzQwOCUyMiUyQyUyMnR5cGUlMjIlM0ElMjJDYW52YXMlMjIlMkMlMjJwYXJ0T2YlMjIlM0ElNUIlN0IlMjJpZCUyMiUzQSUyMmh0dHBzJTNBJTJGJTJGaWlpZi5pbyUyRmFwaSUyRmNvb2tib29rJTJGcmVjaXBlJTJGMDAwOS1ib29rLTElMkZtYW5pZmVzdC5qc29uJTIyJTJDJTIydHlwZSUyMiUzQSUyMk1hbmlmZXN0JTIyJTdEJTVEJTdEJTdE">Link for visualizing the region of a Canvas using a viewer.</a> | ||
``` | ||
|
||
An alternative way of sharing a region of an image is to use the [Image API](https://iiif.io/api/image/3.0/#41-region). However, the context from which the region is extracted is not easily accessible. Instead, sharing a link to open the specific region with a viewer allows the users to explore another part of the image or related content and metadata in the Manifest. | ||
|
||
## Restrictions | ||
|
||
Note Content State does not define how the viewer should bring the regions of the Canvas to the attention of the user. It only mentions: | ||
|
||
"This data structure can be used by clients to load the resource required, present a particular part of the resource to the user." https://iiif.io/api/content-state/1.0/#content-state | ||
|
||
Viewers may set the viewport to the region or highlight the region with an annotation. | ||
|
||
## Example | ||
|
||
In this example we are aiming to highlight the bug that is on the second page of the [Book in recipe][0009]. The part of the image we are highlighting is as follows: | ||
|
||
![Image of a bug](https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/1528,3024,344,408/pct:50/0/default.jpg) | ||
|
||
and this is located in the following region of the second image: | ||
|
||
![Location of the region to be highlighted.](page.jpg) | ||
|
||
{% include content-state-viewers.html iiif-content="annotation.json" viewers="" %} | ||
|
||
{% include jsonviewer.html src="annotation.json" %} | ||
|
||
## Related Recipes | ||
|
||
* [Simplest Manifest - Image][0001] shows the basic structure of a IIIF Manifest using Presentation API 3.0. | ||
* [A simple book][0009] shows the manifest structure. | ||
* [Link for loading a manifest][0466] another example of Content State API. | ||
* [Addressing a Spatial Region][0299] an example of sharing a region of a Canvas creating a new Manifest. | ||
|
||
{% include acronyms.md %} | ||
{% include links.md %} | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.