egret:添加外部字体

Posted wentingc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了egret:添加外部字体相关的知识,希望对你有一定的参考价值。

  1. 将外部字体放在与index.html同目录下;
  2. 打开index.html文件;
  3. 在style中引入外部字体:
      @font-face {
                font-family: ‘MyText‘;
                src:url(‘./font/MyText.ttf‘) ;
            }
  4. 在script里监听字体是否加载完成:
            document.fonts.ready.then(success, fail);
            function success(){
                egret.runEgret({renderMode:"webgl", audioType:0});
            }
            function fail(){
    
            }  
  5. 直接引用:label.fontFamily ="MyText"

以上是关于egret:添加外部字体的主要内容,如果未能解决你的问题,请参考以下文章

从外部片段内的 FragmentTabHost 的子片段添加新的选项菜单

Java itext为pdf 文件添加水印核心功能代码片段

Alfred常见使用

如何将外部字体添加到 ghostscript?

在android中使用外部字体

在WPF(core版本)中引用外部字体不可用问题说明