wulin.comの記事紹介(www.vevb.com):html5キャンバステキスト設定フォントとサイズ。
HTML5キャンバステキスト設定フォントとサイズでは、キャンバスの範囲内でフォントのプロパティを使用できます。
基本的な構文を説明する簡単な例を見てみましょう。
HTML5キャンバステキストフォントとサイズの例
<!doctype html>
<html>
<head>
<title> html5_canvas_text_size </title>
<style>
ボディ{マージン:0px;パディング:0px;}
#mycanvas {border:1px solid#9c9898;マージン:0オート;マージントップ:200px;マージン左:100px;}
</style>
<スクリプト>
window.onload = function(){
var canvas = document.getElementbyid(mycanvas);
var context = canvas.getContext(2d);
var x = 150;
var y = 100;
context.font = 40pt calibri;
context.filltext(hello vevb!、x、y);
};
</script>
</head>
<body>
<キャンバスID = mycanvas width = 578 heigh = 200>
</canvas>
</body>
</html>