canvas 画图工具 -- CanvasDraw
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了canvas 画图工具 -- CanvasDraw相关的知识,希望对你有一定的参考价值。
最近有些项目中用到了canvas画图;
为了方便封装了一下:
他的强大之处是 处理了各种偏针的问题:
1,css 强制宽高的变形 造成的偏针
2,给canvas加边 造成的偏针
3,上层父级缩放 造成的偏针 ( 前两种函数自行校正,第3种要传参)
更多去 github 吧,记得点赞谢谢
CanvasDraw:https://github.com/songyijian/CanvasDraw
var c2=new CanvasDraw(‘#canvas2‘,{ ‘attr‘:{‘width‘:400,‘height‘:400}, ‘lineWidth‘:4 , ‘scale‘:[0.7], //这里处理canvas 父级的缩放 ‘strokeStyle‘:‘red‘, ‘initFn‘:function(_this){}, ‘moveFn‘:function(_this){} }); //获取图像 ncreate[1].onclick=function(){ imgBox.src=c2.getImg(); } //清理滑板 nremove[1].onclick=function(){ c2.clearRect() }
以上是关于canvas 画图工具 -- CanvasDraw的主要内容,如果未能解决你的问题,请参考以下文章