canvas字体样式

Posted tongyuzhe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了canvas字体样式相关的知识,希望对你有一定的参考价值。

<canvas style="border: aqua solid 1px;" id=‘canvas‘ width=‘500‘ height=‘500‘></canvas>
<script>
    var canvas = document.getElementById(‘canvas‘);
    context = canvas.getContext(‘2d‘);

    context.font = ‘38pt Arial‘; //字体样式
    context.fillStyle = ‘red‘; //填充线样式
    context.strokeStyle=‘blue‘; //轮廓线样式

    context.fillText("hellocav",100,100); //填充线
    context.strokeText("hellocav",100,100); //轮廓线
</script>

 

以上是关于canvas字体样式的主要内容,如果未能解决你的问题,请参考以下文章

js 利用canvas 生成文字图片

带有 Canvas 元素的 OpenType 风格集

canvas学习绘制文字

android.graphics - Paint, Canvas, drawLine, drawPoint, drawRect, drawRoundRect, drawCircle, drawO(代码

canvas绘制文本

canvas之文本