Canvas

Your browser does not support the HTML5 canvas tag. Your browser does not support the HTML5 canvas tag. your browser does not support the canvas tag your browser does not support the canvas tag

# SVG 对照 Photoshop

Canvas 能绘制什么样的图形呢,对照Photoshop来吧,我喜欢这样思考

# 线条样式

lineCap
lineJoin

# 转换

缩放 scale
旋转 rotate
平移 translate
矩阵变换 transform

# 像素操作

ctx.getImageData(10,10,50,50);// 获取画布像素数据
ctx.putImageData(imgData,10,10);// 绘制像素数据

# 参考

http://www.w3school.com.cn/tags/html_ref_canvas.asp