关于如何解决canvas的画圆弧时的锯齿感以及如何让canvas的图更清晰?
Posted lyls
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于如何解决canvas的画圆弧时的锯齿感以及如何让canvas的图更清晰?相关的知识,希望对你有一定的参考价值。
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);
}
以上是关于关于如何解决canvas的画圆弧时的锯齿感以及如何让canvas的图更清晰?的主要内容,如果未能解决你的问题,请参考以下文章
关于android中图片裁剪以及PorterDuffXfermode的使用经验小结
关于android中图片裁剪以及PorterDuffXfermode的使用经验小结