2014-01-09 121 views

回答

3

question和上面鏈接的答案中找到答案。似乎我的代碼與我的文件名有關的拼寫問題。所以要清楚,正確的答案是使用CSS字型臉像:

@font-face { 
    font-family: test-family; 
    src: url('path/to/fontfile'); 
} 

然後使用字體家族名的文本對象內部這樣:

var t = new fabric.Text('text', { 
    fontFamily: 'test-family', 
});