From 67785336423d05524cd7cce32e3f870ce912d94e Mon Sep 17 00:00:00 2001 From: Philip Giuliani Date: Wed, 8 Apr 2015 20:14:13 +0200 Subject: [PATCH] Call drawPlaceholder when no tiles are drawn --- src/tiledimage.js | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/src/tiledimage.js b/src/tiledimage.js index 405989b7..48ed29b1 100644 --- a/src/tiledimage.js +++ b/src/tiledimage.js @@ -1157,7 +1157,7 @@ function drawTiles( tiledImage, lastDrawn ){ position, tileSource; - var usedClip = false; + var needsRestore = false; if (tiledImage._clip) { tiledImage._drawer.saveContext(); var box = tiledImage.imageToViewportRectangle(tiledImage._clip, true); @@ -1168,7 +1168,20 @@ function drawTiles( tiledImage, lastDrawn ){ size.x * $.pixelDensityRatio, size.y * $.pixelDensityRatio); tiledImage._drawer.setClip(box); - usedClip = true; + needsRestore = true; + } + + if ( lastDrawn.length === 0 ) { + tiledImage._drawer.saveContext(); + var box = tiledImage.getBounds(true); + var topLeft = tiledImage.viewport.pixelFromPoint(box.getTopLeft(), true); + var size = tiledImage.viewport.deltaPixelsFromPoints(box.getSize(), true); + box = new OpenSeadragon.Rect(topLeft.x * $.pixelDensityRatio, + topLeft.y * $.pixelDensityRatio, + size.x * $.pixelDensityRatio, + size.y * $.pixelDensityRatio); + tiledImage._drawer.drawPlaceholder(box); + needsRestore = true; } for ( i = lastDrawn.length - 1; i >= 0; i-- ) { @@ -1203,7 +1216,7 @@ function drawTiles( tiledImage, lastDrawn ){ } } - if (usedClip) { + if ( needsRestore ) { tiledImage._drawer.restoreContext(); } }