How It Works

A plain-language guide to how the APIs work.

Introduction

Learning about IIIF (generally pronounced “triple-eye-eff”) can be overwhelming at first, especially if you’re not a programmer, so we’ve created a plain-language guide for newcomers. We’ve also created a glossary of “Key concepts you’ll encounter when working with IIIF” which you’ll find at the end of this page.

As you are learning, please know that the community is here to help. Feel free to reach out on Slack or our email discussion list (iiif-discuss) with any questions. There’s also a self-paced online tutorial that may be a useful next step for newcomers, or check out our general set of resources for getting started with IIIF.

delivery diagram A diagram of how the core IIIF APIs work together.

The basics

IIIF is a way to standardize the delivery of images and audio/visual files from servers to different environments on the Web where they can then be viewed and interacted with in many ways.

Modern Web browsers understand how to display formats like .jpg and .mp4 at defined sizes, but cannot do much else. The IIIF specifications align with general Web standards that define how all browsers work to enable richer functionality beyond viewing an image or audio/visual files. For images, that means enabling deep zoom, comparison, structure (i.e., for an object such as a book, structure = page order) and annotation. For audio/visual materials, that means being able to deliver complex structures (such as several reels of film that make up a single movie) along with things like captions, transcriptions/translations, annotations, and more.

IIIF makes these objects work in a consistent way. That enables portability across viewers, the ability to connect and unite materials across institutional boundaries, and more.

The Image and Presentation APIs

There are two main components to IIIF: delivering digital objects to sites and viewing them.

Delivering objects

The Image API defines how image servers deliver image pixels to a viewer. It allows the image to be sent as a full-sized image or as a smaller size, a zoomed portion, a rotated view, or as a black and white version. All of these settings are designated by changing portions of the URL for an Image API resource. To try it out for yourself, head over to this Image API Playrground and adjust some of the Image API parameters to see how they work with real images.

The Image API can be implemented on its own (most commonly to enable fast, deep zoom of very high resolution files like TIF and JP2000), or alongside the Presentation API for additional viewing capabilities.

Image API filler The image API controls the form in which an image is delivered to a location on the Web.

Viewing objects

The Presentation API attaches basic metadata and structure to digital objects, defining how they appear in viewers. It does this via the Manifest, a JSON file which bundles up all the different elements of an IIIF object (such as a single image, or a series of images) with basic metadata (like title, description, and rights information) and structural information (such as page order). (See the glossary below for more definitions of common IIIF terms.)

API filler image
The presentation API delivers data and structure about an image to a viewer.

There are many IIIF viewers. Some are general purpose tools while others specialize in particular kinds of content or functionality. IIIF-compatible viewers generally allow users to pan, zoom, rotate, and resize image objects, and play audio/visual files. Some allow annotation with text, audio, location, and more. Others allow comparison of objects from a single collection side-by-side (or even objects from multiple collections if the object’s Manifest is made available to users).

Advanced use cases

IIIF also enables you to use the same standardized principles to manage other needs related to your IIIF objects.

  • Authentication: The Authentication API defines where or by who your objects can be viewed.
  • Search: The Search API allows users to search within any text associated with an object (such as OCR, transcriptions, etc.)
  • Content state: The Content State API provides a way of linking directly to a particular region and zoom level of a IIIF resource.
  • Change discovery: The Change Discovery API is a tool to describe the new publication of and updates to digital objects, to help aid cross-institutional discovery.

Putting it all together

If you have your own images you want to put online using IIIF you’ll need high-quality assets (most people use JPEG2000 or TIF files), and metadata about structure as well as the information people will read about the image.

From there:

Next steps

Feel like you have a handle on the basics? Try out some of these resources as a next step, or see our “Get Started” page for the full set of ways to get started with IIIF.

Get started

Take the first step to exploring the rich world of IIIF-enabled materials.

Guides

A set of resources to help you find and work with IIIF materials, built by members of the IIIF community.

Talks

Watch selected talks from conferences and other events to learn more about IIIF directly from the community.

Key concepts you’ll encounter when working with IIIF

Annotation: a standard way to associate different types of content to whatever is on your canvas (such as a translation of a line or the name of a person in a photograph. In the IIIF model, images and other presentation content are also technically annotations onto a canvas). For more detail, see the Web Annotation Data Model.

Canvas: the frame of reference for the display of your content, both spatial and temporal (just like a painting canvas for two-dimensional materials, or with an added time dimension for a/v content).

Collection: a set of manifests (or ‘child’ collections) that communicate hierarchy or gather related things (for example, a set of boxes that each have folders within them, and photographs within those folders).

Image server: the computer or service where digital objects live (basically, where assets are stored while waiting for users to access them).

Image viewer: software, usually web-based, that allows viewing and manipulation of images. Sometimes called a “client.” (This is almost always the tool via which end users interact with IIIF materials, and many image viewers add additional functionality like the ability to add annotations or search through transcriptions/translations, etc.)

Manifest: the prime unit in IIIF which lists all the information that makes up a IIIF object. It communicates how to display your digital objects, and what information to display about them, including structure, to varying degrees of complexity as determined by the implementer. (For example, if the object is a book of illustrations, where each illustrated page is a canvas, and there is one specific order to the arrangement of those pages).

Metadata source: the place where the information about objects live, and needs to be connected to your Manifest via the Presentation API (for libraries and museums, this is usually some kind of asset management system, though there are many other possibilities)

Range: a particular order of Canvases (as a basic example, think of the order of pages in a book, or the order of tracks on a music album)