Computer >> Máy Tính >  >> Lập trình >> Javascript

HTML5 Canvas Text Stroke cho Kích thước Phông chữ Lớn


Để vẽ phông chữ lớn đúng cách trong HTML5 Canvas, bạn có thể thử chạy mã sau -

var myCanvas = document.getElementById("myCanvas");
var context = myCanvas.getContext("2d");

context.font = '180pt Georgia';
context.strokeStyle = "#FF0000";
context.fillStyle = "#FFFFFF ";
context.lineWidth = 34;

context.fillText("Demo!",0,200);
context.strokeText("Demo!",0,200);