Only require IIIF level 1; Vary tile size based on src image when no tiles are reported. Toward openseadragon/openseadragon#313
@ -68,7 +68,7 @@ $.IIIF1_1TileSource = function( options ){
|
||||
// dimension
|
||||
|
||||
var short_dim = Math.min(this.height, this.width),
|
||||
tile_options = [128,256,512,1024],
|
||||
tile_options = [256,512,1024],
|
||||
smaller_tiles = [];
|
||||
|
||||
for ( var c = 0; c < tile_options.length; c++ ) {
|
||||
@ -76,13 +76,20 @@ $.IIIF1_1TileSource = function( options ){
|
||||
smaller_tiles.push(tile_options[c]);
|
||||
}
|
||||
}
|
||||
options.tileSize = Math.max.apply(null, smaller_tiles);
|
||||
|
||||
if ( smaller_tiles.length > 0 ) {
|
||||
options.tileSize = Math.max.apply(null, smaller_tiles);
|
||||
} else {
|
||||
// If we're smaller than 256, just use the short side.
|
||||
options.tileSize = short_dim;
|
||||
}
|
||||
this.tile_width = options.tileSize; // So that 'full' gets used for
|
||||
this.tile_height = options.tileSize; // the region below
|
||||
}
|
||||
|
||||
if (! options.maxLevel ) {
|
||||
var mf = -1
|
||||
; var scfs = this.scale_factors || this.scale_factor;
|
||||
var mf = -1;
|
||||
var scfs = this.scale_factors || this.scale_factor;
|
||||
if ( scfs instanceof Array ) {
|
||||
for ( var i = 0; i < scfs.length; i++ ) {
|
||||
var cf = Number( scfs[i] );
|
||||
@ -165,7 +172,7 @@ $.extend( $.IIIF1_1TileSource.prototype, $.TileSource.prototype, /** @lends Open
|
||||
uri;
|
||||
|
||||
if ( level_width < this.tile_width && level_height < this.tile_height ){
|
||||
iiif_size = level_width + "," + level_height;
|
||||
iiif_size = level_width + ",";
|
||||
iiif_region = 'full';
|
||||
} else {
|
||||
iiif_tile_x = x * iiif_tile_size_width;
|
||||
@ -173,12 +180,7 @@ $.extend( $.IIIF1_1TileSource.prototype, $.TileSource.prototype, /** @lends Open
|
||||
iiif_tile_w = Math.min( iiif_tile_size_width, this.width - iiif_tile_x );
|
||||
iiif_tile_h = Math.min( iiif_tile_size_height, this.height - iiif_tile_y );
|
||||
|
||||
if( (this.profile &&
|
||||
this.profile == "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level1" ) ){
|
||||
iiif_size = Math.ceil(iiif_tile_w * scale) + ",";
|
||||
} else {
|
||||
iiif_size = Math.ceil(iiif_tile_w * scale) + "," + Math.ceil(iiif_tile_h * scale);
|
||||
}
|
||||
|
||||
iiif_region = [ iiif_tile_x, iiif_tile_y, iiif_tile_w, iiif_tile_h ].join(',');
|
||||
}
|
||||
|
18
test/data/iiif_1_1_no_tiles_1048.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level1",
|
||||
"height": 870,
|
||||
"width": 1048,
|
||||
"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_1_1_no_tiles_1048"
|
||||
}
|
BIN
test/data/iiif_1_1_no_tiles_1048/0,0,1024,870/512,/0/native.jpg
Normal file
After Width: | Height: | Size: 108 KiB |
BIN
test/data/iiif_1_1_no_tiles_1048/0,0,512,512/512,/0/native.jpg
Normal file
After Width: | Height: | Size: 103 KiB |
BIN
test/data/iiif_1_1_no_tiles_1048/0,512,512,358/512,/0/native.jpg
Normal file
After Width: | Height: | Size: 77 KiB |
BIN
test/data/iiif_1_1_no_tiles_1048/1024,0,24,512/24,/0/native.jpg
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
test/data/iiif_1_1_no_tiles_1048/1024,0,24,870/12,/0/native.jpg
Normal file
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 4.1 KiB |
BIN
test/data/iiif_1_1_no_tiles_1048/512,0,512,512/512,/0/native.jpg
Normal file
After Width: | Height: | Size: 104 KiB |
After Width: | Height: | Size: 75 KiB |
BIN
test/data/iiif_1_1_no_tiles_1048/full/131,/0/native.jpg
Normal file
After Width: | Height: | Size: 9.7 KiB |
BIN
test/data/iiif_1_1_no_tiles_1048/full/17,/0/native.jpg
Normal file
After Width: | Height: | Size: 861 B |
BIN
test/data/iiif_1_1_no_tiles_1048/full/262,/0/native.jpg
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
test/data/iiif_1_1_no_tiles_1048/full/33,/0/native.jpg
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
test/data/iiif_1_1_no_tiles_1048/full/66,/0/native.jpg
Normal file
After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 829 B After Width: | Height: | Size: 710 B |
18
test/data/iiif_1_1_no_tiles_255.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level1",
|
||||
"height": 212,
|
||||
"width": 255,
|
||||
"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_1_1_no_tiles_255"
|
||||
}
|
BIN
test/data/iiif_1_1_no_tiles_255/0,0,212,212/212,/0/native.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
test/data/iiif_1_1_no_tiles_255/212,0,43,212/43,/0/native.jpg
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
test/data/iiif_1_1_no_tiles_255/full/128,/0/native.jpg
Normal file
After Width: | Height: | Size: 8.4 KiB |
BIN
test/data/iiif_1_1_no_tiles_255/full/16,/0/native.jpg
Normal file
After Width: | Height: | Size: 824 B |
BIN
test/data/iiif_1_1_no_tiles_255/full/32,/0/native.jpg
Normal file
After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 691 B After Width: | Height: | Size: 690 B |
BIN
test/data/iiif_1_1_no_tiles_255/full/64,/0/native.jpg
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
test/data/iiif_1_1_no_tiles_255/full/8,/0/native.jpg
Normal file
After Width: | Height: | Size: 689 B |
18
test/data/iiif_1_1_no_tiles_384.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level1",
|
||||
"height": 319,
|
||||
"width": 384,
|
||||
"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_1_1_no_tiles_384"
|
||||
}
|
BIN
test/data/iiif_1_1_no_tiles_384/0,0,256,256/256,/0/native.jpg
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
test/data/iiif_1_1_no_tiles_384/0,256,256,63/256,/0/native.jpg
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
test/data/iiif_1_1_no_tiles_384/256,0,128,256/128,/0/native.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
test/data/iiif_1_1_no_tiles_384/256,256,128,63/128,/0/native.jpg
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
test/data/iiif_1_1_no_tiles_384/full/12,/0/native.jpg
Normal file
After Width: | Height: | Size: 758 B |
BIN
test/data/iiif_1_1_no_tiles_384/full/192,/0/native.jpg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
test/data/iiif_1_1_no_tiles_384/full/24,/0/native.jpg
Normal file
After Width: | Height: | Size: 1012 B |
BIN
test/data/iiif_1_1_no_tiles_384/full/48,/0/native.jpg
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
test/data/iiif_1_1_no_tiles_384/full/6,/0/native.jpg
Normal file
After Width: | Height: | Size: 691 B |
BIN
test/data/iiif_1_1_no_tiles_384/full/96,/0/native.jpg
Normal file
After Width: | Height: | Size: 5.2 KiB |
@ -1,7 +1,7 @@
|
||||
{
|
||||
"profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
|
||||
"height": 850,
|
||||
"width": 1024,
|
||||
"height": 637,
|
||||
"width": 768,
|
||||
"qualities": [
|
||||
"native",
|
||||
"color",
|
||||
@ -14,6 +14,5 @@
|
||||
"gif"
|
||||
],
|
||||
"@context": "http://library.stanford.edu/iiif/image-api/1.1/context.json",
|
||||
"@id": "http://localhost:8000/test/data/iiif_no_tiles"
|
||||
"@id": "http://localhost:8000/test/data/iiif_1_1_no_tiles_768"
|
||||
}
|
||||
|
BIN
test/data/iiif_1_1_no_tiles_768/0,0,512,512/512,/0/native.jpg
Normal file
After Width: | Height: | Size: 111 KiB |
BIN
test/data/iiif_1_1_no_tiles_768/0,512,512,125/512,/0/native.jpg
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
test/data/iiif_1_1_no_tiles_768/512,0,256,512/256,/0/native.jpg
Normal file
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 14 KiB |
BIN
test/data/iiif_1_1_no_tiles_768/full/12,/0/native.jpg
Normal file
After Width: | Height: | Size: 764 B |
BIN
test/data/iiif_1_1_no_tiles_768/full/192,/0/native.jpg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
test/data/iiif_1_1_no_tiles_768/full/24,/0/native.jpg
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
test/data/iiif_1_1_no_tiles_768/full/384,/0/native.jpg
Normal file
After Width: | Height: | Size: 62 KiB |
BIN
test/data/iiif_1_1_no_tiles_768/full/48,/0/native.jpg
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
test/data/iiif_1_1_no_tiles_768/full/6,/0/native.jpg
Normal file
After Width: | Height: | Size: 690 B |
BIN
test/data/iiif_1_1_no_tiles_768/full/96,/0/native.jpg
Normal file
After Width: | Height: | Size: 5.4 KiB |
@ -24,5 +24,5 @@
|
||||
"gif"
|
||||
],
|
||||
"@context": "http://library.stanford.edu/iiif/image-api/1.1/context.json",
|
||||
"@id": "http://localhost:8000/test/data/iiif_1_1_files"
|
||||
"@id": "http://localhost:8000/test/data/iiif_1_1_tiled"
|
||||
}
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 9.9 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 717 B After Width: | Height: | Size: 717 B |
Before Width: | Height: | Size: 716 B After Width: | Height: | Size: 716 B |
Before Width: | Height: | Size: 717 B After Width: | Height: | Size: 717 B |
Before Width: | Height: | Size: 712 B After Width: | Height: | Size: 712 B |
Before Width: | Height: | Size: 633 B After Width: | Height: | Size: 633 B |
Before Width: | Height: | Size: 810 B After Width: | Height: | Size: 810 B |
Before Width: | Height: | Size: 663 B After Width: | Height: | Size: 663 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 675 B After Width: | Height: | Size: 675 B |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 683 B After Width: | Height: | Size: 683 B |
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 105 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 351 KiB |
@ -77,12 +77,27 @@
|
||||
|
||||
// ----------
|
||||
asyncTest('IIIF 1.1 JSON', function() {
|
||||
testOpen('iiif1_1.json');
|
||||
testOpen('iiif_1_1_tiled.json');
|
||||
});
|
||||
|
||||
// ----------
|
||||
asyncTest('IIIF No Tiles', function() {
|
||||
testOpen('iiif_no_tiles.json');
|
||||
asyncTest('IIIF No Tiles, Less than 256', function() {
|
||||
testOpen('iiif_1_1_no_tiles_255.json');
|
||||
});
|
||||
|
||||
// ----------
|
||||
asyncTest('IIIF No Tiles, Bet. 256 and 512', function() {
|
||||
testOpen('iiif_1_1_no_tiles_384.json');
|
||||
});
|
||||
|
||||
// ----------
|
||||
asyncTest('IIIF No Tiles, Bet. 512 and 1024', function() {
|
||||
testOpen('iiif_1_1_no_tiles_768.json');
|
||||
});
|
||||
|
||||
// ----------
|
||||
asyncTest('IIIF No Tiles, Larger than 1024', function() {
|
||||
testOpen('iiif_1_1_no_tiles_1048.json');
|
||||
});
|
||||
|
||||
})();
|
||||
|