在OffscreenCanvas上没有fillText?

时间:2017-10-05 19:04:13

标签: javascript html canvas

我似乎无法将文本渲染到OffscreenCanvas(在Chrome 61.0.3中)。方法是否缺失,或者我需要做些什么才能使其正常工作?

const oOffscreenCanvas = new OffscreenCanvas(480,480);
const oOffscreenContext = oOffscreenCanvas.getContext('2d');

oOffscreenContext.fillStyle = 'red';
oOffscreenContext.fillRect(0, 0, 64, 64);
oOffscreenContext.fillStyle = 'white';
oOffscreenContext.fillText('help', 32, 32);

....产生......

  

未捕获的TypeError:oOffscreenContext.fillText不是函数

1 个答案:

答案 0 :(得分:0)

好的,所以在撰写此问题时,文字API似乎无法使用