码迷,mamicode.com
首页 > 其他好文 > 详细

canvas引入外部字体无效解决方法

时间:2019-12-31 12:36:39      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:body   etc   文件   tco   type   外部   字体样式   col   text   

1.css文件中引入外部字体

@font-face {
    font-family: ‘hwhp‘;
    src: url(‘../font/hwhp.ttf‘) format(‘truetype‘),
        url(‘../font/hwhp.eot‘),
        url(‘../font/hwhp.woff‘) format(‘woff‘),
        url(‘../font/hwhp.svg‘) format(‘svg‘);
}

canvas设置字体样式

var wm = document.createElement(‘canvas‘);
        wm.setAttribute(‘width‘, 600);
        wm.setAttribute(‘height‘, 500);
        var ctx = _wm.getContext(‘2d‘);
        ctx.font = "130px ‘hwhp‘";
        ctx.translate(50, 380);
        ctx.rotate(-0.5);
        ctx.fillStyle="#F8F8FF";
        ctx.fillText(text, 0, 0);

最重要的一步,html文件中需要预先使用字体样式,尽量放在body下面第一个元素,元素必须可见。

<div style="font-family: hwhp;">.</div>

canvas引入外部字体无效解决方法

标签:body   etc   文件   tco   type   外部   字体样式   col   text   

原文地址:https://www.cnblogs.com/wpp281154/p/12123605.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!