diff --git a/changelog.txt b/changelog.txt index 14cd06f2..dd80da47 100644 --- a/changelog.txt +++ b/changelog.txt @@ -12,6 +12,7 @@ OPENSEADRAGON CHANGELOG * Added fitBoundsWithConstraints() to the viewport (#423) * Fixed MouseTracker cross-browser issues with tracking pointers over and out of the tracked element (pull request #448, fix for #152, #404, #420, and #427) * Fixed incorrect flick direction after image is rotated (#452) +* Debug mode now works with rotate images (#453) 1.1.1: diff --git a/src/drawer.js b/src/drawer.js index a4b7f2ec..d7210114 100644 --- a/src/drawer.js +++ b/src/drawer.js @@ -1181,12 +1181,24 @@ function drawDebugInfo( drawer, tile, count, i ){ drawer.context.font = 'small-caps bold 13px ariel'; drawer.context.strokeStyle = drawer.debugGridColor; drawer.context.fillStyle = drawer.debugGridColor; + + offsetForRotation( tile, drawer.canvas, drawer.context, drawer.viewport.degrees ); + drawer.context.strokeRect( tile.position.x, tile.position.y, tile.size.x, tile.size.y ); + + var tileCenterX = tile.position.x + (tile.size.x / 2); + var tileCenterY = tile.position.y + (tile.size.y / 2); + + // Rotate the text the right way around. + drawer.context.translate( tileCenterX, tileCenterY ); + drawer.context.rotate( Math.PI / 180 * -drawer.viewport.degrees ); + drawer.context.translate( -tileCenterX, -tileCenterY ); + if( tile.x === 0 && tile.y === 0 ){ drawer.context.fillText( "Zoom: " + drawer.viewport.getZoom(), @@ -1229,6 +1241,7 @@ function drawDebugInfo( drawer, tile, count, i ){ tile.position.x + 10, tile.position.y + 70 ); + restoreRotationChanges( tile, drawer.canvas, drawer.context ); drawer.context.restore(); } }