diff --git a/src/tile.js b/src/tile.js index e2f34941..756d9d4a 100644 --- a/src/tile.js +++ b/src/tile.js @@ -278,8 +278,8 @@ $.Tile.prototype = /** @lends OpenSeadragon.Tile.prototype */{ if(!rendered){ canvas = document.createElement( 'canvas' ); - canvas.width = this.image.width * $.pixelDensityRatio; - canvas.height = this.image.height * $.pixelDensityRatio; + canvas.width = this.image.width; + canvas.height = this.image.height; rendered = canvas.getContext('2d'); rendered.drawImage( this.image, 0, 0 ); this.cacheImageRecord.setRenderedContext(rendered);