test for IIIF images w/o tiles

This commit is contained in:
Jon Stroop 2013-11-18 12:52:55 -05:00
parent 22587cec6e
commit 6aaf44cebf
10 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{
"profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
"height": 850,
"width": 1024,
"qualities": [
"native",
"color",
"grey",
"bitonal"
],
"formats": [
"jpg",
"png",
"gif"
],
"@context": "http://library.stanford.edu/iiif/image-api/1.1/context.json",
"@id": "http://localhost:8000/test/data/iiif_no_tiles"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 829 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 691 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 KiB

View File

@ -80,4 +80,9 @@
testOpen('iiif1_1.json'); testOpen('iiif1_1.json');
}); });
// ----------
asyncTest('IIIF No Tiles', function() {
testOpen('iiif_no_tiles.json');
});
})(); })();