From 0afb0fae0ebc72453ef187b9634bbf33492e1299 Mon Sep 17 00:00:00 2001 From: Niklas von Hertzen Date: Wed, 29 May 2013 22:31:00 +0300 Subject: [PATCH] disable image smoothing --- src/renderers/Canvas.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/renderers/Canvas.js b/src/renderers/Canvas.js index 3578a27..19aea3b 100644 --- a/src/renderers/Canvas.js +++ b/src/renderers/Canvas.js @@ -80,6 +80,7 @@ _html2canvas.Renderer.Canvas = function(options) { canvas.height = canvas.style.height = options.height || zStack.ctx.height; fstyle = ctx.fillStyle; + ctx.webkitImageSmoothingEnabled = ctx.mozImageSmoothingEnabled = ctx.imageSmoothingEnabled = false; ctx.fillStyle = (isTransparent(zStack.backgroundColor) && options.background !== undefined) ? options.background : zStack.backgroundColor; ctx.fillRect(0, 0, canvas.width, canvas.height); ctx.fillStyle = fstyle;