This feature is not Baseline because it does not work in some of the most widely-used browsers.
The imageSmoothingQuality property of the CanvasRenderingContext2D interface, part of the Canvas API, lets you set the quality of image smoothing.
Note: For this property to have an effect, imageSmoothingEnabled must be true.
One of the following:
The default value is "low".
This example uses the imageSmoothingQuality property with a scaled image.
<canvas id="canvas"></canvas>
const canvas = document.getElementById("canvas");
const ctx = canvas.getContext("2d");
let img = new Image();
img.src = "canvas_create_pattern.png";
img.onload = () => {
ctx.imageSmoothingQuality = "low";
ctx.drawImage(img, 0, 0, 300, 150);
};
| Specification |
|---|
| HTML> # dom-context-2d-imagesmoothingquality-dev> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
imageSmoothingQuality |
54 | 79 | No | 41 | 9.1 | 54 | No | 41 | 9.3 | 6.0 | 54 | 9.3 |
CanvasRenderingContext2D
CanvasRenderingContext2D.imageSmoothingEnabledimage-rendering
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/imageSmoothingQuality