Objects with a IIIF images in the related figure? #1186
-
|
Is it possible to just use a IIIF image manifest in a figure without including the full JPG as a src file? I'm working on a new project with quite a few large images that will be included as objects, and I would love to not have to include the full res JPGs in the _assets\images\figures directory if I can avoid it. I noticed in the release notes for rc.33 that there's a new iiif_image property for figures, but I'm just not entirely sure how to use it. Thanks for any help you can provide! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
|
Hi @fullerpault, you're right about the There's some info about it at the top of the original pull request here: #1050. Essentially, it requires that the IIIF image asset be coming from a Level 2 server (although maybe a Level 1 would work too) and that you provide the Image API URL for Here's an example which you could also try directly in your project as a test: - id: "irises"
iiif_image: https://media.getty.edu/iiif/image/8c255d80-7382-46db-9fa8-892c0d37247e/
caption: "Vincent van Gogh (Dutch, 1853-1890), *Irises*, 1889. Oil on canvas. Unframed: 74.3 × 94.3 cm (29 1/4 × 37 1/8 in.), Framed [Outer Dim]: 94.9 × 114.9 × 11.4 cm (37 3/8 × 45 1/4 × 4 1/2 in.). The J. Paul Getty Museum, Los Angeles, [90.PA.20](https://www.getty.edu/art/collection/object/103JNH)."
zoom: trueQuire will produce all the derivative images it needs from this. No need to include any files directly in your project. let us know how it goes! |
Beta Was this translation helpful? Give feedback.
-
|
Hi @fullerpault, to diagnose this issue, can you please copy and paste one of the relevant entries from |
Beta Was this translation helpful? Give feedback.

Hi @fullerpault, you're right about the
iiif_imageproperty. It exists, we just haven't documented it yet (in part because we wanted to rename it to make it clear that it's a substitute forsrc). But you're welcome to give it a try.There's some info about it at the top of the original pull request here: #1050. Essentially, it requires that the IIIF image asset be coming from a Level 2 server (although maybe a Level 1 would work too) and that you provide the Image API URL for
iiif_image, not the IIIF Manifest.Here's an example which you could also try directly in your project as a test: