html5 – Canvas context.fillText()vs context.strokeText()

前端之家收集整理的这篇文章主要介绍了html5 – Canvas context.fillText()vs context.strokeText()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
context.fillText()和context.strokeText()之间是否有任何区别,除了第一个使用context.fillStyle而后者使用context.strokeStyle.他们没有添加context.textStyle属性的任何原因?

解决方法

是的,strokeText实际上描绘了字母的轮廓,而fillText填充了字母的内部.
ctx.fillStyle='red';
ctx.strokeStyle='green'
ctx.lineWidth=3;
ctx.font='90px verdana';
ctx.fillText('Q',50,150);
ctx.strokeText('Q',125,150);
ctx.fillText('Q',200,150);
原文链接:https://www.f2er.com/html5/168362.html

猜你在找的HTML5相关文章