标签:com rip asc script getc 绘制 ext font red
一、绘制基本的文字:
var canvas = document.getElementById("myCanvas") var ctx = canvas.getContext(‘2d‘) ctx.font = "bold 30px 微软雅黑" ctx.fillText(‘canvas学习‘, 100 ,100) ctx.fillStyle = "red" //填充的文本 ctx.lineWidth = 1 ctx.strokeStyle="blue" ctx.strokeText(‘canvas学习‘,100,300) //边框文本
注意:我们也可以用渐变色和图片填充文字的背景
二:font属性
标签:com rip asc script getc 绘制 ext font red
原文地址:http://www.cnblogs.com/momozjm/p/7867583.html