canvas斜线如何做到抗锯齿?

canvas使用lineTo()方法绘制的斜线段,会产生锯齿

clipboard.png

使用这个方法并没有起到预想中的效果

context.imageSmoothingEnabled = true;

请问在canvas中,一般采取什么方法做到斜线抗锯齿?

阅读 13.7k
1 个回答

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);
}

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题