html2canvas 无法在 Chrome 中使用 @font-face 字体

Kar*_* it 5 html canvas html5-canvas html2canvas

我正在使用http://html2canvas.hertzen.com/将我的 html 转换为画布。这是一个很棒的剧本。
它与英文字体配合得很好......但我正在使用古吉拉蒂字体。我包括来自 css (@font-face) 的字体,
它在 Firefox 中运行良好,但在 chrome 中它不显示确切的字符。
这段代码中我缺少任何选项吗?

html2canvas(document.body, {
  onrendered: function(canvas) {
    document.body.appendChild(canvas);
  },
  width: 300,
  height: 300
});
Run Code Online (Sandbox Code Playgroud)