W3cubDocs

/DOM

CanvasRenderingContext2D.imageSmoothingEnabled

This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The CanvasRenderingContext2D.imageSmoothingEnabled property of the Canvas 2D API determines whether scaled images are smoothed (true, default) or not (false). On getting the imageSmoothingEnabled property, the last value it was set to is returned.

This property is useful for games and other apps that use pixel art. When enlarging images, the default resizing algorithm will blur the pixels. Set this property to false to retain the pixels' sharpness.

Syntax

ctx.imageSmoothingEnabled = value;

Options

value
A Boolean indicating whether to smooth scaled images or not.

Examples

Using the imageSmoothingEnabled property

This example illustrates the effect of applying the imageSmoothingEnabled property to a scaled image. The image's natural dimensions are 86 x 117.

HTML

<canvas id="canvas"></canvas>

JavaScript

var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');

var img = new Image();
img.src = 'https://mdn.mozillademos.org/files/222/Canvas_createpattern.png';
img.onload = function() {
  ctx.msImageSmoothingEnabled = false;
  ctx.imageSmoothingEnabled = false;
  ctx.drawImage(img, 0, 0, 400, 200);
};

Edit the code below to see your changes update live in the canvas:

Specifications

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support 30
30
? — 30
Prefixed
Prefixed Requires the vendor prefix: webkit
15 51
51
? — 51
Prefixed
Prefixed Requires the vendor prefix: moz
Yes
Prefixed
Yes
Prefixed
Prefixed Requires the vendor prefix: ms
? ?
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support 4.4 ? Yes 51
51
? — 51
Prefixed
Prefixed Requires the vendor prefix: moz
? ? ?

See also

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/imageSmoothingEnabled