如何在HTML5 canvas元素上书写文本?

前端之家收集整理的这篇文章主要介绍了如何在HTML5 canvas元素上书写文本?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以在HTML5画布上写文本?

解决方法

<canvas id="e" width="200" height="200"></canvas>
<script>
  var canvas = document.getElementById("e");
  var context = canvas.getContext("2d");
  context.fillStyle = "blue";
  context.font = "bold 16px Arial";
  context.fillText("Zibri",100,100);
</script>
原文链接:https://www.f2er.com/html5/170392.html

猜你在找的HTML5相关文章