位图文字

  • 插件名:BitmapText
  • npm:tinyjs-plugin-bitmap-text

通过 Tiny.BitmapText 可以创建一个图片字体,当然,首先你要准备必要的资源文件:文字的图片和标记相关属性的 xml 文件,你可以在 Playground > 文字 > 位图文字 里看到,下面的代码段就是使用姿势:

var fontText = new Tiny.BitmapText('fnt fonts are supported!\ncreated by \n"Tiny.BitmapText()\n1234567890"', {
  font: '32px Impact', //Impact 是字体的名称,是 xml 中 info 标签的 face 属性
  tint: '0xff6600'
});