扫码关注官方订阅号
canvas使用lineTo()方法绘制的斜线段,会产生锯齿
使用这个方法并没有起到预想中的效果
context.imageSmoothingEnabled = true;
请问在canvas中,一般采取什么方法做到斜线抗锯齿?
ringa_lee
let width = canvas.width,height=canvas.height;if (window.devicePixelRatio) {canvas.style.width = width + "px";canvas.style.height = height + "px";canvas.height = height * window.devicePixelRatio;canvas.width = width * window.devicePixelRatio;ctx.scale(window.devicePixelRatio, window.devicePixelRatio);}
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
let width = canvas.width,height=canvas.height;
if (window.devicePixelRatio) {
canvas.style.width = width + "px";
canvas.style.height = height + "px";
canvas.height = height * window.devicePixelRatio;
canvas.width = width * window.devicePixelRatio;
ctx.scale(window.devicePixelRatio, window.devicePixelRatio);
}