关于如何解决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);
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM