From 7e950fda2bece4698d5b9080fa1d33a44edc6703 Mon Sep 17 00:00:00 2001 From: Conner Wingard Date: Fri, 26 Jun 2015 14:17:40 -0400 Subject: [PATCH 01/10] Add support for viewing custom tile sources with non-square tiles --- src/iiiftilesource.js | 9 +++++---- src/tiledimage.js | 2 +- src/tilesource.js | 43 ++++++++++++++++++++++++++++++------------- 3 files changed, 36 insertions(+), 18 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index 484b7092..54779158 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -192,7 +192,7 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea if (this.tileSizePerScaleFactor && this.tileSizePerScaleFactor[scaleFactor]) { this.tileSize = this.tileSizePerScaleFactor[scaleFactor]; } - return this.tileSize; + return new $.Point(this.tileSize, this.tileSize); }, /** @@ -229,8 +229,9 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea uri; tileSize = this.getTileSize(level); - iiifTileSizeWidth = Math.ceil( tileSize / scale ); - iiifTileSizeHeight = iiifTileSizeWidth; + + iiifTileSizeWidth = Math.ceil( tileSize.x / scale ); + iiifTileSizeHeight = Math.ceil( tileSize.y / scale ); if ( this['@context'].indexOf('/1.0/context.json') > -1 || this['@context'].indexOf('/1.1/context.json') > -1 || @@ -240,7 +241,7 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea iiifQuality = "default.jpg"; } - if ( levelWidth < tileSize && levelHeight < tileSize ){ + if ( levelWidth < tileSize.x && levelHeight < tileSize.y ){ iiifSize = levelWidth + ","; iiifRegion = 'full'; } else { diff --git a/src/tiledimage.js b/src/tiledimage.js index 363df7c6..699ca254 100644 --- a/src/tiledimage.js +++ b/src/tiledimage.js @@ -1036,7 +1036,7 @@ function onTileLoad( tiledImage, tile, time, image ) { var finish = function() { var cutoff = Math.ceil( Math.log( - tiledImage.source.getTileSize(tile.level) ) / Math.log( 2 ) ); + tiledImage.source.getTileSize(tile.level).x ) / Math.log( 2 ) ); setTileLoaded(tiledImage, tile, image, cutoff); }; diff --git a/src/tilesource.js b/src/tilesource.js index 1c0d29d2..9ed329dc 100644 --- a/src/tilesource.js +++ b/src/tilesource.js @@ -73,6 +73,11 @@ * The size of the tiles to assumed to make up each pyramid layer in pixels. * Tile size determines the point at which the image pyramid must be * divided into a matrix of smaller images. + * Use options.tileWidth and options.tileHeight to support non-square tiles. + * @param {Number} [options.tileWidth] + * The width of the tiles to assumed to make up each pyramid layer in pixels. + * @param {Number} [options.tileHeight] + * The height of the tiles to assumed to make up each pyramid layer in pixels. * @param {Number} [options.tileOverlap] * The number of pixels each tile is expected to overlap touching tiles. * @param {Number} [options.minLevel] @@ -191,7 +196,10 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve this.aspectRatio = ( options.width && options.height ) ? ( options.width / options.height ) : 1; this.dimensions = new $.Point( options.width, options.height ); - this.tileSize = options.tileSize ? options.tileSize : 0; + this.tileSize = new $.Point( + ( options.tileSize ? options.tileSize : options.tileWidth ), + ( options.tileSize ? options.tileSize : options.tileHeight ) + ); this.tileOverlap = options.tileOverlap ? options.tileOverlap : 0; this.minLevel = options.minLevel ? options.minLevel : 0; this.maxLevel = ( undefined !== options.maxLevel && null !== options.maxLevel ) ? @@ -219,6 +227,7 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ * from .tileSize directly. tileSize may be deprecated in a future release. * @function * @param {Number} level + * @returns {OpenSeadragon.Point} The dimensions of tiles in level */ getTileSize: function( level ) { return this.tileSize; @@ -250,8 +259,8 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ */ getNumTiles: function( level ) { var scale = this.getLevelScale( level ), - x = Math.ceil( scale * this.dimensions.x / this.getTileSize(level) ), - y = Math.ceil( scale * this.dimensions.y / this.getTileSize(level) ); + x = Math.ceil( scale * this.dimensions.x / this.getTileSize(level).x ), + y = Math.ceil( scale * this.dimensions.y / this.getTileSize(level).y ); return new $.Point( x, y ); }, @@ -276,11 +285,19 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ getClosestLevel: function( rect ) { var i, tilesPerSide, - tiles; + tiles, + tileSize; + for( i = this.minLevel; i < this.maxLevel; i++ ){ tiles = this.getNumTiles( i ); - tilesPerSide = Math.floor( Math.max( rect.x, rect.y ) / this.getTileSize(i) ); - if( Math.max( tiles.x, tiles.y ) + 1 >= tilesPerSide ){ + tileSize = this.getTileSize(i); + + tilesPerSide = new $.Point( + Math.floor( rect.x / tileSize.x ), + Math.floor( rect.y / tileSize.y ) + ); + + if( tiles.x + 1 >= tilesPerSide.x && tiles.y + 1 >= tilesPerSide.y ){ break; } } @@ -293,9 +310,9 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ * @param {OpenSeadragon.Point} point */ getTileAtPoint: function( level, point ) { - var pixel = point.times( this.dimensions.x ).times( this.getLevelScale(level ) ), - tx = Math.floor( pixel.x / this.getTileSize(level) ), - ty = Math.floor( pixel.y / this.getTileSize(level) ); + var pixel = point.times( this.dimensions.x ).times( this.getLevelScale(level) ), + tx = Math.floor( pixel.x / this.getTileSize(level).x ), + ty = Math.floor( pixel.y / this.getTileSize(level).y ); return new $.Point( tx, ty ); }, @@ -309,10 +326,10 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ getTileBounds: function( level, x, y ) { var dimensionsScaled = this.dimensions.times( this.getLevelScale( level ) ), tileSize = this.getTileSize(level), - px = ( x === 0 ) ? 0 : tileSize * x - this.tileOverlap, - py = ( y === 0 ) ? 0 : tileSize * y - this.tileOverlap, - sx = tileSize + ( x === 0 ? 1 : 2 ) * this.tileOverlap, - sy = tileSize + ( y === 0 ? 1 : 2 ) * this.tileOverlap, + px = ( x === 0 ) ? 0 : tileSize.x * x - this.tileOverlap, + py = ( y === 0 ) ? 0 : tileSize.y * y - this.tileOverlap, + sx = tileSize.x + ( x === 0 ? 1 : 2 ) * this.tileOverlap, + sy = tileSize.y + ( y === 0 ? 1 : 2 ) * this.tileOverlap, scale = 1.0 / dimensionsScaled.x; sx = Math.min( sx, dimensionsScaled.x - px ); From 85241b124926c329c61497aa0bca25cbf7e77434 Mon Sep 17 00:00:00 2001 From: Conner Wingard Date: Fri, 26 Jun 2015 16:26:09 -0400 Subject: [PATCH 02/10] Fix for maintaining IIIFTileSource support while implementing #670. Change docs to reflect that TileSource.prototype.tileSize is now an OpenSeadragon.Point --- src/iiiftilesource.js | 7 +++++-- src/tilesource.js | 18 ++++++++++++------ 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index 54779158..a1e88a12 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -190,9 +190,12 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea var scaleFactor = Math.pow(2, this.maxLevel - level); // cache it in case any external code is going to read it directly if (this.tileSizePerScaleFactor && this.tileSizePerScaleFactor[scaleFactor]) { - this.tileSize = this.tileSizePerScaleFactor[scaleFactor]; + this.tileSize = new $.Point( + this.tileSizePerScaleFactor[scaleFactor], + this.tileSizePerScaleFactor[scaleFactor] + ); } - return new $.Point(this.tileSize, this.tileSize); + return this.tileSize; }, /** diff --git a/src/tilesource.js b/src/tilesource.js index 9ed329dc..74a9c539 100644 --- a/src/tilesource.js +++ b/src/tilesource.js @@ -146,7 +146,7 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve * The size of the image tiles used to compose the image. * Please note that tileSize may be deprecated in a future release. * Instead the getTileSize(level) function should be used. - * @member {Number} tileSize + * @member {OpenSeadragon.Point} tileSize * @memberof OpenSeadragon.TileSource# */ /** @@ -179,7 +179,7 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve //async mechanism set some safe defaults first this.aspectRatio = 1; this.dimensions = new $.Point( 10, 10 ); - this.tileSize = 0; + this.tileSize = new $.Point( 0, 0 ); this.tileOverlap = 0; this.minLevel = 0; this.maxLevel = 0; @@ -196,10 +196,16 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve this.aspectRatio = ( options.width && options.height ) ? ( options.width / options.height ) : 1; this.dimensions = new $.Point( options.width, options.height ); - this.tileSize = new $.Point( - ( options.tileSize ? options.tileSize : options.tileWidth ), - ( options.tileSize ? options.tileSize : options.tileHeight ) - ); + + if( options.tileSize ){ + this.tileSize = new $.Point(options.tileSize, options.tileSize); + } else { + this.tileSize = new $.Point( + (options.tileWidth ? options.tileWidth : 0), + (options.tileHeight ? options.tileHeight : 0) + ); + } + this.tileOverlap = options.tileOverlap ? options.tileOverlap : 0; this.minLevel = options.minLevel ? options.minLevel : 0; this.maxLevel = ( undefined !== options.maxLevel && null !== options.maxLevel ) ? From 827fe4e8362c9ff4bd23e022fc0f3089c4fecee5 Mon Sep 17 00:00:00 2001 From: Conner Wingard Date: Mon, 29 Jun 2015 13:42:09 -0400 Subject: [PATCH 03/10] Deprecate TileSource.getTileSize(), add TileSource.getTileWidth() and TileSource.getTileHeight() --- src/iiiftilesource.js | 12 ++---- src/tiledimage.js | 2 +- src/tilesource.js | 85 +++++++++++++++++++++++++++++-------------- 3 files changed, 62 insertions(+), 37 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index a1e88a12..e053eab2 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -185,15 +185,11 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea * @function * @param {Number} level */ - getTileSize: function( level ){ var scaleFactor = Math.pow(2, this.maxLevel - level); // cache it in case any external code is going to read it directly if (this.tileSizePerScaleFactor && this.tileSizePerScaleFactor[scaleFactor]) { - this.tileSize = new $.Point( - this.tileSizePerScaleFactor[scaleFactor], - this.tileSizePerScaleFactor[scaleFactor] - ); + this.tileSize = this.tileSizePerScaleFactor[scaleFactor]; } return this.tileSize; }, @@ -233,8 +229,8 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea tileSize = this.getTileSize(level); - iiifTileSizeWidth = Math.ceil( tileSize.x / scale ); - iiifTileSizeHeight = Math.ceil( tileSize.y / scale ); + iiifTileSizeWidth = Math.ceil( tileSize / scale ); + iiifTileSizeHeight = Math.ceil( tileSize / scale ); if ( this['@context'].indexOf('/1.0/context.json') > -1 || this['@context'].indexOf('/1.1/context.json') > -1 || @@ -244,7 +240,7 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea iiifQuality = "default.jpg"; } - if ( levelWidth < tileSize.x && levelHeight < tileSize.y ){ + if ( levelWidth < tileSize && levelHeight < tileSize ){ iiifSize = levelWidth + ","; iiifRegion = 'full'; } else { diff --git a/src/tiledimage.js b/src/tiledimage.js index 699ca254..ded6b480 100644 --- a/src/tiledimage.js +++ b/src/tiledimage.js @@ -1036,7 +1036,7 @@ function onTileLoad( tiledImage, tile, time, image ) { var finish = function() { var cutoff = Math.ceil( Math.log( - tiledImage.source.getTileSize(tile.level).x ) / Math.log( 2 ) ); + tiledImage.source.getTileWidth(tile.level) ) / Math.log( 2 ) ); setTileLoaded(tiledImage, tile, image, cutoff); }; diff --git a/src/tilesource.js b/src/tilesource.js index 74a9c539..1d70738e 100644 --- a/src/tilesource.js +++ b/src/tilesource.js @@ -146,7 +146,7 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve * The size of the image tiles used to compose the image. * Please note that tileSize may be deprecated in a future release. * Instead the getTileSize(level) function should be used. - * @member {OpenSeadragon.Point} tileSize + * @member {Number} tileSize * @memberof OpenSeadragon.TileSource# */ /** @@ -179,7 +179,7 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve //async mechanism set some safe defaults first this.aspectRatio = 1; this.dimensions = new $.Point( 10, 10 ); - this.tileSize = new $.Point( 0, 0 ); + this.tileSize = 0; this.tileOverlap = 0; this.minLevel = 0; this.maxLevel = 0; @@ -197,15 +197,10 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve ( options.width / options.height ) : 1; this.dimensions = new $.Point( options.width, options.height ); - if( options.tileSize ){ - this.tileSize = new $.Point(options.tileSize, options.tileSize); - } else { - this.tileSize = new $.Point( - (options.tileWidth ? options.tileWidth : 0), - (options.tileHeight ? options.tileHeight : 0) - ); - } - + this.tileSize = options.tileSize ? options.tileSize : 0; + this.tileWidth = options.tileWidth; + this.tileHeight = options.tileHeight; + this.tileOverlap = options.tileOverlap ? options.tileOverlap : 0; this.minLevel = options.minLevel ? options.minLevel : 0; this.maxLevel = ( undefined !== options.maxLevel && null !== options.maxLevel ) ? @@ -231,13 +226,49 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ * Subclasses should override this if tileSizes can be different at different levels * such as in IIIFTileSource. Code should use this function rather than reading * from .tileSize directly. tileSize may be deprecated in a future release. + * @deprecated * @function * @param {Number} level - * @returns {OpenSeadragon.Point} The dimensions of tiles in level */ getTileSize: function( level ) { + $.console.error( + "[TileSource.getTileSize] is deprecated." + + "Use TileSource.getTileWidth() and TileSource.getTileHeight() instead" + ); return this.tileSize; }, + + /** + * Return the tileWidth for a given level. + * Subclasses should override this if tileWidth can be different at different levels + * such as in IIIFTileSource. Code should use this function rather than reading + * from .tileWidth directly. + * @function + * @param {Number} level + */ + getTileWidth: function( level ) { + // If tileWidth was not set, fallback by setting it to tileSize + if( this.tileWidth === undefined){ + this.tileWidth = this.tileSize; + } + return this.tileWidth; + }, + + /** + * Return the tileHeight for a given level. + * Subclasses should override this if tileHeight can be different at different levels + * such as in IIIFTileSource. Code should use this function rather than reading + * from .tileHeight directly. + * @function + * @param {Number} level + */ + getTileHeight: function( level ) { + // If tileHeight was not set, fallback by setting it to tileSize + if( this.tileHeight === undefined ){ + this.tileHeight = this.tileSize; + } + return this.tileHeight; + }, /** * @function @@ -265,8 +296,8 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ */ getNumTiles: function( level ) { var scale = this.getLevelScale( level ), - x = Math.ceil( scale * this.dimensions.x / this.getTileSize(level).x ), - y = Math.ceil( scale * this.dimensions.y / this.getTileSize(level).y ); + x = Math.ceil( scale * this.dimensions.x / this.getTileWidth(level) ), + y = Math.ceil( scale * this.dimensions.y / this.getTileHeight(level) ); return new $.Point( x, y ); }, @@ -291,19 +322,16 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ getClosestLevel: function( rect ) { var i, tilesPerSide, - tiles, - tileSize; + tiles; for( i = this.minLevel; i < this.maxLevel; i++ ){ tiles = this.getNumTiles( i ); - tileSize = this.getTileSize(i); - tilesPerSide = new $.Point( - Math.floor( rect.x / tileSize.x ), - Math.floor( rect.y / tileSize.y ) + Math.floor( rect.x / this.getTileWidth(i) ), + Math.floor( rect.y / this.getTileHeight(i) ) ); - if( tiles.x + 1 >= tilesPerSide.x && tiles.y + 1 >= tilesPerSide.y ){ + if( tiles.x + 1 >= tilesPerSide.x || tiles.y + 1 >= tilesPerSide.y ){ break; } } @@ -317,8 +345,8 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ */ getTileAtPoint: function( level, point ) { var pixel = point.times( this.dimensions.x ).times( this.getLevelScale(level) ), - tx = Math.floor( pixel.x / this.getTileSize(level).x ), - ty = Math.floor( pixel.y / this.getTileSize(level).y ); + tx = Math.floor( pixel.x / this.getTileWidth(level) ), + ty = Math.floor( pixel.y / this.getTileHeight(level) ); return new $.Point( tx, ty ); }, @@ -331,11 +359,12 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ */ getTileBounds: function( level, x, y ) { var dimensionsScaled = this.dimensions.times( this.getLevelScale( level ) ), - tileSize = this.getTileSize(level), - px = ( x === 0 ) ? 0 : tileSize.x * x - this.tileOverlap, - py = ( y === 0 ) ? 0 : tileSize.y * y - this.tileOverlap, - sx = tileSize.x + ( x === 0 ? 1 : 2 ) * this.tileOverlap, - sy = tileSize.y + ( y === 0 ? 1 : 2 ) * this.tileOverlap, + tileWidth = this.getTileWidth(level), + tileHeight = this.getTileHeight(level), + px = ( x === 0 ) ? 0 : tileWidth * x - this.tileOverlap, + py = ( y === 0 ) ? 0 : tileHeight * y - this.tileOverlap, + sx = tileWidth + ( x === 0 ? 1 : 2 ) * this.tileOverlap, + sy = tileHeight + ( y === 0 ? 1 : 2 ) * this.tileOverlap, scale = 1.0 / dimensionsScaled.x; sx = Math.min( sx, dimensionsScaled.x - px ); From 201ca8a422c952f884b95f7a9a4a1f1cb31bb879 Mon Sep 17 00:00:00 2001 From: Conner Wingard Date: Mon, 29 Jun 2015 14:37:35 -0400 Subject: [PATCH 04/10] Revert changes to IIIFTileSource. Changes no longer needed for non square tiles --- src/iiiftilesource.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index e053eab2..b54d020b 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -117,6 +117,7 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea * @param {Object|Array} data * @param {String} optional - url */ + supports: function( data, url ) { // Version 2.0 and forwards if (data.protocol && data.protocol == 'http://iiif.io/api/image') { @@ -228,9 +229,8 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea uri; tileSize = this.getTileSize(level); - iiifTileSizeWidth = Math.ceil( tileSize / scale ); - iiifTileSizeHeight = Math.ceil( tileSize / scale ); + iiifTileSizeHeight = iiifTileSizeWidth; if ( this['@context'].indexOf('/1.0/context.json') > -1 || this['@context'].indexOf('/1.1/context.json') > -1 || From d11c4fe1070e32560dc1a2d1345d5a006843645a Mon Sep 17 00:00:00 2001 From: Conner Wingard Date: Tue, 30 Jun 2015 17:56:06 -0400 Subject: [PATCH 05/10] Remove TileSource.tileSize. Convert IIIFTileSource to override TileSource.getTileWidth and TileSource.getTileHeight. --- src/iiiftilesource.js | 39 +++++++++++++++++++++++++++----------- src/tilesource.js | 44 +++++++++++++++---------------------------- 2 files changed, 43 insertions(+), 40 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index b54d020b..cf7d1927 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -182,19 +182,34 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea }, /** - * Return the tileSize for the given level. + * Return the tileWidth for the given level. * @function * @param {Number} level - */ - getTileSize: function( level ){ + */ + getTileWidth: function( level ) { var scaleFactor = Math.pow(2, this.maxLevel - level); - // cache it in case any external code is going to read it directly + if (this.tileSizePerScaleFactor && this.tileSizePerScaleFactor[scaleFactor]) { - this.tileSize = this.tileSizePerScaleFactor[scaleFactor]; + return this.tileSizePerScaleFactor[scaleFactor]; } - return this.tileSize; + return this._tileWidth; }, + /** + * Return the tileHeight for the given level. + * @function + * @param {Number} level + */ + getTileHeight: function( level ) { + var scaleFactor = Math.pow(2, this.maxLevel - level); + + if (this.tileSizePerScaleFactor && this.tileSizePerScaleFactor[scaleFactor]) { + return this.tileSizePerScaleFactor[scaleFactor]; + } + return this._tileHeight; + }, + + /** * Responsible for retreiving the url which will return an image for the * region specified by the given x, y, and level components. @@ -216,7 +231,8 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea levelHeight = Math.ceil( this.height * scale ), //## iiif region - tileSize, + tileWidth, + tileHeight, iiifTileSizeWidth, iiifTileSizeHeight, iiifRegion, @@ -228,9 +244,10 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea iiifQuality, uri; - tileSize = this.getTileSize(level); - iiifTileSizeWidth = Math.ceil( tileSize / scale ); - iiifTileSizeHeight = iiifTileSizeWidth; + tileWidth = this.getTileSize(level); + tileHeight = this.getTileHeight(level); + iiifTileSizeWidth = Math.ceil( tileWidth / scale ); + iiifTileSizeHeight = Math.ceil( tileHeight / scale ); if ( this['@context'].indexOf('/1.0/context.json') > -1 || this['@context'].indexOf('/1.1/context.json') > -1 || @@ -240,7 +257,7 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea iiifQuality = "default.jpg"; } - if ( levelWidth < tileSize && levelHeight < tileSize ){ + if ( levelWidth < tileWidth && levelHeight < tileHeight ){ iiifSize = levelWidth + ","; iiifRegion = 'full'; } else { diff --git a/src/tilesource.js b/src/tilesource.js index 1d70738e..fa51915b 100644 --- a/src/tilesource.js +++ b/src/tilesource.js @@ -142,13 +142,6 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve * @member {OpenSeadragon.Point} dimensions * @memberof OpenSeadragon.TileSource# */ - /** - * The size of the image tiles used to compose the image. - * Please note that tileSize may be deprecated in a future release. - * Instead the getTileSize(level) function should be used. - * @member {Number} tileSize - * @memberof OpenSeadragon.TileSource# - */ /** * The overlap in pixels each tile shares with its adjacent neighbors. * @member {Number} tileOverlap @@ -179,7 +172,8 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve //async mechanism set some safe defaults first this.aspectRatio = 1; this.dimensions = new $.Point( 10, 10 ); - this.tileSize = 0; + this._tileWidth = 0; + this._tileHeight = 0; this.tileOverlap = 0; this.minLevel = 0; this.maxLevel = 0; @@ -197,9 +191,12 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve ( options.width / options.height ) : 1; this.dimensions = new $.Point( options.width, options.height ); - this.tileSize = options.tileSize ? options.tileSize : 0; - this.tileWidth = options.tileWidth; - this.tileHeight = options.tileHeight; + if ( options.tileSize ){ + this._tileWidth = this._tileHeight = options.tileSize; + } else { + this._tileWidth = options.tileWidth ? options.tileWidth : 0; + this._tileHeight = options.tileHeight ? options.tileHeight: 0; + } this.tileOverlap = options.tileOverlap ? options.tileOverlap : 0; this.minLevel = options.minLevel ? options.minLevel : 0; @@ -221,21 +218,12 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ - /** - * Return the tileSize for a given level. - * Subclasses should override this if tileSizes can be different at different levels - * such as in IIIFTileSource. Code should use this function rather than reading - * from .tileSize directly. tileSize may be deprecated in a future release. - * @deprecated - * @function - * @param {Number} level - */ getTileSize: function( level ) { $.console.error( "[TileSource.getTileSize] is deprecated." + "Use TileSource.getTileWidth() and TileSource.getTileHeight() instead" ); - return this.tileSize; + return this._tileWidth; }, /** @@ -247,11 +235,10 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ * @param {Number} level */ getTileWidth: function( level ) { - // If tileWidth was not set, fallback by setting it to tileSize - if( this.tileWidth === undefined){ - this.tileWidth = this.tileSize; + if (!this._tileWidth) { + return this.getTileSize(level); } - return this.tileWidth; + return this._tileWidth; }, /** @@ -263,11 +250,10 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ * @param {Number} level */ getTileHeight: function( level ) { - // If tileHeight was not set, fallback by setting it to tileSize - if( this.tileHeight === undefined ){ - this.tileHeight = this.tileSize; + if (!this._tileHeight) { + return this.getTileSize(level); } - return this.tileHeight; + return this._tileHeight; }, /** From c27a43e49e81c937d08e781f33daeaac1567ca45 Mon Sep 17 00:00:00 2001 From: Conner Wingard Date: Thu, 2 Jul 2015 11:24:43 -0400 Subject: [PATCH 06/10] Fix calling the wrong function in IIIFTileSource to retrieve tile width --- src/iiiftilesource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index cf7d1927..304ef464 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -244,7 +244,7 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea iiifQuality, uri; - tileWidth = this.getTileSize(level); + tileWidth = this.getTileWidth(level); tileHeight = this.getTileHeight(level); iiifTileSizeWidth = Math.ceil( tileWidth / scale ); iiifTileSizeHeight = Math.ceil( tileHeight / scale ); From df7bd2e5ced7a6c9ca576292ba3e28368536dfd8 Mon Sep 17 00:00:00 2001 From: Conner Wingard Date: Fri, 10 Jul 2015 14:26:51 -0400 Subject: [PATCH 07/10] Respect non-square tiles if available from IIIFTileSources --- src/iiiftilesource.js | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index 304ef464..bf3da020 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -55,14 +55,19 @@ $.IIIFTileSource = function( options ){ options.tileSizePerScaleFactor = {}; // N.B. 2.0 renamed scale_factors to scaleFactors - if ( this.tile_width ) { + if ( this.tile_width && this.tile_height ) { + options.tileWidth = this.tile_width; + options.tileHeight = this.tile_height; + } else if ( this.tile_width ) { options.tileSize = this.tile_width; } else if ( this.tile_height ) { options.tileSize = this.tile_height; } else if ( this.tiles ) { // Version 2.0 forwards if ( this.tiles.length == 1 ) { - options.tileSize = this.tiles[0].width; + options.tileWidth = this.tiles[0].width; + // Use height if provided, otherwise assume square tiles and use width. + options.tileHeight = this.tiles[0].height || this.tiles[0].width; this.scale_factors = this.tiles[0].scaleFactors; } else { // Multiple tile sizes at different levels @@ -71,13 +76,15 @@ $.IIIFTileSource = function( options ){ for (var sf = 0; sf < this.tiles[t].scaleFactors.length; sf++) { var scaleFactor = this.tiles[t].scaleFactors[sf]; this.scale_factors.push(scaleFactor); - options.tileSizePerScaleFactor[scaleFactor] = this.tiles[t].width; + options.tileSizePerScaleFactor[scaleFactor] = { + width: this.tiles[t].width, + height: this.tiles[t].height || this.tiles[t].width + }; } } } } else { // use the largest of tileOptions that is smaller than the short dimension - var shortDim = Math.min( this.height, this.width ), tileOptions = [256,512,1024], smallerTiles = []; @@ -94,8 +101,6 @@ $.IIIFTileSource = function( options ){ // If we're smaller than 256, just use the short side. options.tileSize = shortDim; } - this.tile_width = options.tileSize; // So that 'full' gets used for - this.tile_height = options.tileSize; // the region below } if ( !options.maxLevel ) { @@ -190,7 +195,7 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea var scaleFactor = Math.pow(2, this.maxLevel - level); if (this.tileSizePerScaleFactor && this.tileSizePerScaleFactor[scaleFactor]) { - return this.tileSizePerScaleFactor[scaleFactor]; + return this.tileSizePerScaleFactor[scaleFactor].width; } return this._tileWidth; }, @@ -204,7 +209,7 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea var scaleFactor = Math.pow(2, this.maxLevel - level); if (this.tileSizePerScaleFactor && this.tileSizePerScaleFactor[scaleFactor]) { - return this.tileSizePerScaleFactor[scaleFactor]; + return this.tileSizePerScaleFactor[scaleFactor].height; } return this._tileHeight; }, From e1e345a4bc753ea80f4d761c223cdc893ed81975 Mon Sep 17 00:00:00 2001 From: Conner Wingard Date: Tue, 14 Jul 2015 14:49:52 -0400 Subject: [PATCH 08/10] Clean up TileSource object when provided tileWidth/tileHeight for clarity. Add basic TileSource tests. --- src/tilesource.js | 27 +++++++++++++++----- test/modules/tilesource.js | 51 ++++++++++++++++++++++++++++++++++++++ test/test.html | 1 + 3 files changed, 73 insertions(+), 6 deletions(-) create mode 100644 test/modules/tilesource.js diff --git a/src/tilesource.js b/src/tilesource.js index fa51915b..48d5bf10 100644 --- a/src/tilesource.js +++ b/src/tilesource.js @@ -191,11 +191,26 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve ( options.width / options.height ) : 1; this.dimensions = new $.Point( options.width, options.height ); - if ( options.tileSize ){ - this._tileWidth = this._tileHeight = options.tileSize; + if ( this.tileSize ){ + this._tileWidth = this._tileHeight = this.tileSize; + delete this.tileSize; } else { - this._tileWidth = options.tileWidth ? options.tileWidth : 0; - this._tileHeight = options.tileHeight ? options.tileHeight: 0; + if( this.tileWidth ){ + // We were passed tileWidth in options, but we want to rename it + // with a leading underscore to make clear that it is not safe to directly modify it + this._tileWidth = this.tileWidth; + delete this.tileWidth; + } else { + this._tileWidth = 0; + } + + if( this.tileHeight ){ + // See note above about renaming this.tileWidth + this._tileHeight = this.tileHeight; + delete this.tileHeight; + } else { + this._tileHeight = 0; + } } this.tileOverlap = options.tileOverlap ? options.tileOverlap : 0; @@ -230,7 +245,7 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ * Return the tileWidth for a given level. * Subclasses should override this if tileWidth can be different at different levels * such as in IIIFTileSource. Code should use this function rather than reading - * from .tileWidth directly. + * from ._tileWidth directly. * @function * @param {Number} level */ @@ -245,7 +260,7 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{ * Return the tileHeight for a given level. * Subclasses should override this if tileHeight can be different at different levels * such as in IIIFTileSource. Code should use this function rather than reading - * from .tileHeight directly. + * from ._tileHeight directly. * @function * @param {Number} level */ diff --git a/test/modules/tilesource.js b/test/modules/tilesource.js new file mode 100644 index 00000000..59d8b77f --- /dev/null +++ b/test/modules/tilesource.js @@ -0,0 +1,51 @@ +/* global module, ok, equal, start, test, testLog, Util */ +(function() { + + module('TileSource', { + setup: function() { + testLog.reset(); + } + }); + + + test("should set sane tile size defaults", function() { + var source = new OpenSeadragon.TileSource(); + + equal(source.getTileWidth(), 0, "getTileWidth() should return 0 if not provided a size"); + equal(source.getTileHeight(), 0, "getTileHeight() should return 0 if not provided a size"); + }); + + test("providing tileSize", function(){ + var tileSize = 256, + source = new OpenSeadragon.TileSource({ + tileSize: tileSize + }); + + equal(source.tileSize, undefined, "tileSize should not be set on the tileSource"); + equal(source.getTileWidth(), tileSize, "getTileWidth() should equal tileSize"); + equal(source.getTileHeight(), tileSize, "getTileHeight() should equal tileSize"); + }); + + + test("providing tileWidth and tileHeight", function(){ + var tileWidth = 256, + tileHeight = 512, + source = new OpenSeadragon.TileSource({ + tileWidth: tileWidth, + tileHeight: tileHeight + }); + + equal(source._tileWidth, tileWidth, "tileWidth option should set _tileWidth"); + equal(source._tileHeight, tileHeight, "tileHeight option should set _tileHeight"); + equal(source.tileWidth, undefined, "tileWidth should be renamed _tileWidth"); + equal(source.tileHeight, undefined, "tileHeight should be renamed _tileHeight"); + equal(source.getTileWidth(), tileWidth, "getTileWidth() should equal tileWidth"); + equal(source.getTileHeight(), tileHeight, "getTileHeight() should equal tileHeight"); + }); + + test('getTileSize() deprecation', function() { + var source = new OpenSeadragon.TileSource(); + Util.testDeprecation(source, 'getTileSize'); + }); + +}()); diff --git a/test/test.html b/test/test.html index ae4863e8..e52eb66a 100644 --- a/test/test.html +++ b/test/test.html @@ -36,6 +36,7 @@ +