From 1a60238c61b3f6a8d49384aca91d340ccdec36b0 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Tue, 16 May 2017 13:49:59 -0700 Subject: [PATCH 1/7] Improved best first level calculation --- src/tiledimage.js | 2 +- src/tilesource.js | 13 +++---------- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/src/tiledimage.js b/src/tiledimage.js index f4178c8d..31a763c5 100644 --- a/src/tiledimage.js +++ b/src/tiledimage.js @@ -978,7 +978,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag var targetZeroRatio = viewport.deltaPixelsFromPointsNoRotate( this.source.getPixelRatio( Math.max( - this.source.getClosestLevel(viewport.containerSize) - 1, + this.source.getClosestLevel(), 0 ) ), diff --git a/src/tilesource.js b/src/tilesource.js index 26c220b7..d4c1e044 100644 --- a/src/tilesource.js +++ b/src/tilesource.js @@ -320,21 +320,14 @@ $.TileSource.prototype = { /** * @function - * @param {Rect} rect */ - getClosestLevel: function( rect ) { + getClosestLevel: function() { var i, - tilesPerSide, tiles; - for( i = this.minLevel; i < this.maxLevel; i++ ){ + for( i = this.minLevel; i <= this.maxLevel; i++ ){ tiles = this.getNumTiles( i ); - tilesPerSide = new $.Point( - 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 || tiles.y > 1) { break; } } From ed93a329129766eff94651892586aeb450fea152 Mon Sep 17 00:00:00 2001 From: Alexey Tikhonov Date: Wed, 17 May 2017 22:58:50 +0300 Subject: [PATCH 2/7] change regex determining tilesUrl to accept file as iipserver parameter without slash in front --- src/dzitilesource.js | 2 +- test/modules/dzitilesource.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/dzitilesource.js b/src/dzitilesource.js index 54b8cb68..443bfaca 100644 --- a/src/dzitilesource.js +++ b/src/dzitilesource.js @@ -140,7 +140,7 @@ $.extend( $.DziTileSource.prototype, $.TileSource.prototype, /** @lends OpenSead if (url && !options.tilesUrl) { options.tilesUrl = url.replace( - /([^\/]+?)(\.(dzi|xml|js))?(\?[^\/]*)?\/?$/, '$1_files/'); + /([^\/]+?)(\.(dzi|xml|js)?(\?[^\/]*)?)?\/?$/, '$1_files/'); if (url.search(/\.(dzi|xml|js)\?/) != -1) { options.queryParams = url.match(/\?.*/); diff --git a/test/modules/dzitilesource.js b/test/modules/dzitilesource.js index e7eb2114..25b0c265 100644 --- a/test/modules/dzitilesource.js +++ b/test/modules/dzitilesource.js @@ -36,6 +36,9 @@ testImplicitTilesUrl( '/iiipsrv?DeepZoom=/path/my.dzi', '/iiipsrv?DeepZoom=/path/my_files/', 'querystring in dzi url should not be ignored before slashes'); + testImplicitTilesUrl( + '/fcg-bin/iipsrv.fcgi?Deepzoom=123test.tif.dzi', '/fcg-bin/iipsrv.fcgi?Deepzoom=123test.tif_files/', + 'filename in querystring does not have to contain slash'); }); }()); From 23cba35ea0a9a93e21b249a59f97105230d06c1e Mon Sep 17 00:00:00 2001 From: larissasmith Date: Thu, 18 May 2017 15:17:02 -0600 Subject: [PATCH 3/7] Clamp device pixel ratio to a minimum of 1 for calculating pixelDensityRatio. A lower value can cause tile drawing issues. --- src/openseadragon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openseadragon.js b/src/openseadragon.js index a470de14..ca81739c 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -880,7 +880,7 @@ function OpenSeadragon( options ){ context.msBackingStorePixelRatio || context.oBackingStorePixelRatio || context.backingStorePixelRatio || 1; - return devicePixelRatio / backingStoreRatio; + return Math.max(devicePixelRatio, 1) / backingStoreRatio; } else { return 1; } From aaff33e2678e1db5c06699b048f195d9d47c15e0 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Fri, 19 May 2017 09:56:55 -0700 Subject: [PATCH 4/7] Changelog for #1199 --- changelog.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.txt b/changelog.txt index 110d1905..5cf4e0ce 100644 --- a/changelog.txt +++ b/changelog.txt @@ -39,6 +39,7 @@ OPENSEADRAGON CHANGELOG * Fixed: zoomTo/zoomBy ignore refPoint if immediately is true (#1184) * Enabled configuration of ImageLoader timeout (#1192) * Viewer.open() now supports an initialPage argument for sequenceMode (#1196) +* Fixed: IIPImageServer didn't work with the latest OSD release (#1199) 2.2.1: From 52525f6697251615a533fb40373200e3c09f9118 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Fri, 19 May 2017 10:06:48 -0700 Subject: [PATCH 5/7] Changelog for #1200 and comment tweak --- changelog.txt | 1 + src/openseadragon.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 5cf4e0ce..23f7d9d6 100644 --- a/changelog.txt +++ b/changelog.txt @@ -40,6 +40,7 @@ OPENSEADRAGON CHANGELOG * Enabled configuration of ImageLoader timeout (#1192) * Viewer.open() now supports an initialPage argument for sequenceMode (#1196) * Fixed: IIPImageServer didn't work with the latest OSD release (#1199) +* Now clamping pixel ratio density to a minimum of 1, fixing display issues on low density devices (#1200) 2.2.1: diff --git a/src/openseadragon.js b/src/openseadragon.js index fd41bf37..9b07d922 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -875,7 +875,8 @@ function OpenSeadragon( options ){ }; /** - * A ratio comparing the device screen's pixel density to the canvas's backing store pixel density. Defaults to 1 if canvas isn't supported by the browser. + * A ratio comparing the device screen's pixel density to the canvas's backing store pixel density, + * clamped to a minimum of 1. Defaults to 1 if canvas isn't supported by the browser. * @member {Number} pixelDensityRatio * @memberof OpenSeadragon */ From 82b1b3e599d0d65cd7b1c1890af2bd5198f99849 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Fri, 19 May 2017 11:12:01 -0700 Subject: [PATCH 6/7] getClosestLevel refinement --- src/tilesource.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/tilesource.js b/src/tilesource.js index d4c1e044..e83c4fab 100644 --- a/src/tilesource.js +++ b/src/tilesource.js @@ -320,18 +320,20 @@ $.TileSource.prototype = { /** * @function + * @returns {Number} The highest level in this tile source that can be contained in a single tile. */ getClosestLevel: function() { var i, tiles; - for( i = this.minLevel; i <= this.maxLevel; i++ ){ - tiles = this.getNumTiles( i ); + for (i = this.minLevel + 1; i <= this.maxLevel; i++){ + tiles = this.getNumTiles(i); if (tiles.x > 1 || tiles.y > 1) { break; } } - return Math.max( 0, i - 1 ); + + return i - 1; }, /** From 5290d02d9a97c472e1b5963e3e76ab0e541b1597 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Mon, 22 May 2017 10:19:30 -0700 Subject: [PATCH 7/7] Changelog for #1198 --- changelog.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.txt b/changelog.txt index 23f7d9d6..614e4ae1 100644 --- a/changelog.txt +++ b/changelog.txt @@ -41,6 +41,7 @@ OPENSEADRAGON CHANGELOG * Viewer.open() now supports an initialPage argument for sequenceMode (#1196) * Fixed: IIPImageServer didn't work with the latest OSD release (#1199) * Now clamping pixel ratio density to a minimum of 1, fixing display issues on low density devices (#1200) +* Improved calculation for determining which level to load first (#1198) 2.2.1: