CanvasRenderingContext2D.imageSmoothingQuality - Web APIs 编辑
Experimental
This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
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
.
Syntax
ctx.imageSmoothingQuality = "low" || "medium" || "high"
Options
Possible values:
"low"
- Low quality.
"medium"
- Medium quality.
"high"
- High quality.
Example
Setting image smoothing quality
This example uses the imageSmoothingQuality
property with a scaled image.
HTML
<canvas id="canvas"></canvas>
JavaScript
const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');
let img = new Image();
img.src = 'https://www.wenjiangs.com/wp-content/uploads/2020/mozilla/Canvas_createpattern.png';
img.onload = function() {
ctx.imageSmoothingQuality = 'low';
ctx.drawImage(img, 0, 0, 300, 150);
};
Result
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'imageSmoothingQuality' in that specification. | Living Standard | Initial definition. |
Browser compatibility
BCD tables only load in the browser
See also
- The interface defining this property:
CanvasRenderingContext2D
CanvasRenderingContext2D.imageSmoothingEnabled
image-rendering
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论