HTML5 Canvans 常用API整理
所有API調(diào)用都是基于自定義的對象 var context = document.getElementById("myCanvas").getContext("2d");中
W3C標(biāo)準(zhǔn):http://www.w3.org/TR/2012/WD-2dcontext-20120329/
中文介紹(部分):http://www.w3school.com.cn/htmldom/dom_obj_canvasrenderingcontext2d.asp?
講畫布內(nèi)容導(dǎo)出為圖像
?? document.getElementById("myCanvas").toDataURL()
屬性
lineWidth 影響stroke方法繪制出輪廓的寬度,例:
?? context.lineWidth?=4;
strokeStyle 影響stroke方法繪制出輪廓的顏色,例:
? context.strokeStyle="#00FF00";
? context.strokeStyle="red";
?fillStyle 影響fill方法繪制出圖形的填充色,例:
? context.fillStyle="#00FF00";
? context.fillStyle="red";
?
轉(zhuǎn)載于:https://www.cnblogs.com/FlyCat/archive/2012/07/06/2579422.html
總結(jié)
以上是生活随笔為你收集整理的HTML5 Canvans 常用API整理的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 联想成杭州亚运会官方供应商
- 下一篇: .NET中的UI自动化测试