From 11024f44f22d84329c99d1d261c2e8c43e857968 Mon Sep 17 00:00:00 2001 From: Serge Markin Date: Thu, 20 Aug 2015 20:11:30 +0800 Subject: [PATCH 1/3] FIXED: Rotation works improperly on retina display #683 --- src/drawer.js | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/src/drawer.js b/src/drawer.js index 939a8cf0..9b74b981 100644 --- a/src/drawer.js +++ b/src/drawer.js @@ -488,29 +488,18 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{ // private _offsetForRotation: function( tile, degrees, useSketch ){ var cx = this.canvas.width / 2, - cy = this.canvas.height / 2, - px = tile.position.x - cx, - py = tile.position.y - cy; + cy = this.canvas.height / 2; var context = this._getContext( useSketch ); context.save(); context.translate(cx, cy); context.rotate( Math.PI / 180 * degrees); - tile.position.x = px; - tile.position.y = py; + context.translate(-cx, -cy); }, // private _restoreRotationChanges: function( tile, useSketch ){ - var cx = this.canvas.width / 2, - cy = this.canvas.height / 2, - px = tile.position.x + cx, - py = tile.position.y + cy; - - tile.position.x = px; - tile.position.y = py; - var context = this._getContext( useSketch ); context.restore(); }, From ba80561e7680b07277e771bc479e7255fdeb4d56 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Thu, 20 Aug 2015 09:38:30 -0700 Subject: [PATCH 2/3] changelog for #708 --- changelog.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.txt b/changelog.txt index 601d2263..52daa29d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -18,6 +18,7 @@ OPENSEADRAGON CHANGELOG * IIIFTileSources will now respect non-square tiles if available. * Added XDomainRequest as fallback method for ajax requests if XMLHttpRequest fails (for IE < 10) (#693) * Now avoiding using eval when JSON.parse is available (#696) +* Rotation now works properly on retina display (#708) 2.0.0: From 5c518621b11924fe2f2b7c514db09cb07a8098d2 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Tue, 25 Aug 2015 09:08:28 -0700 Subject: [PATCH 3/3] Changelog for #706 --- changelog.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.txt b/changelog.txt index 52daa29d..b0ba97d6 100644 --- a/changelog.txt +++ b/changelog.txt @@ -19,6 +19,7 @@ OPENSEADRAGON CHANGELOG * Added XDomainRequest as fallback method for ajax requests if XMLHttpRequest fails (for IE < 10) (#693) * Now avoiding using eval when JSON.parse is available (#696) * Rotation now works properly on retina display (#708) +* Added option in addTiledImage to replace tiledImage at index (#706) 2.0.0: