首页 > 代码库 > canvas绘图详解-10-文字渲染
canvas绘图详解-10-文字渲染
1、context.font = "20px sans-serf" 默认
支持 可以这只以下五种属性
font-style:normal|italic|oblique
font-variant:normal|smallcaps
font-weight:normal|lighter|bold|bolder
font-size:20px|2em|150%|xx-samall
font-family:Hrial,Helvetic,sans-serf
解释一下
2、context.textAlign = left||center||right
和你想象的不一样吧,是以起始点为标准,起始点表示最左边,中间,最右边
3、context.textBaseline = top || middle || bottom || Alphabetic || ideographic || hanging
解释一下
4、渲染文字
context.measureText(string).width;//获取一段文字的宽度
context.fillText(string , x , y , [maxlen]);//实心字体
context.strokeText(string , x , y , [maxlen]);//边框字体
x,y为起始点坐标,maxlengh是字体最大长度,如果超出会自动压缩,单位默认px,不用写
context.fillStyle = "#058"; context.font = "bold 120px Arial"; context.textAlign = "center"; context.textBaseline = "middle"; context.fillText("CANVAS", canvas.width/2 , canvas.height/2);
canvas绘图详解-10-文字渲染
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。