美文网首页编程
LibGDX 游戏开发 之 位图字体 Bitmap fonts

LibGDX 游戏开发 之 位图字体 Bitmap fonts

作者: imagefancy | 来源:发表于2017-10-28 15:12 被阅读0次

    原文链接:https://github.com/libgdx/libgdx/wiki/Bitmap-fonts
    译者:重庆好爸爸 game4kids@163.com
    谢绝转载

    LibGDX 使用bitmap files(pngs)来渲染字体。字体中的每个字形都具有相应的纹理区域。
    BitmapFont class (code)

    BitmapFont在LibGdx 1.5.6版本进行了重构. This blog post 有关于变化的细节,还有一个小例子展示了如何从1.5.6之前的代码移动到新的API。
    有关使用BitmapFont的教程可在LibGDX.info上获得

    字体文件的格式规范 File format specifications for the font file

    参考文献指出,bmFont最初由AndreasJönsson在AngelCode创建
    BMFont - BMFont - 文件格式的原始规范。
    Glyph Designer - 有关输出的详细信息,包括二进制格式。

    创建Bitmaps的工具 Tools for Creating Bitmaps

    Hiero - 用于将系统字体转换为位图的实用程序
    ShoeBox - 允许您从图像加载自定义字形,然后从中创建位图字体。 有一个使用它与libgdx的伟大教程

    Glyph Designer - 一种商业位图字体工具,可用于阴影,渐变,笔触等各种选项。
    Littera - 在线位图字体生成器,具有大量的自定义(需要Adobe Flash)。

    其他工具 Other Tools

    FreeTypeFontGenerator - 为字体生成位图,而不是提供由Hiero等实用程序制作的预渲染位图
    Examples : (more)

    FreeTypeFontGenerator generator = new FreeTypeFontGenerator(Gdx.files.internal("data/unbom.ttf"));
    FreeTypeFontParameter parameter = new FreeTypeFontParameter();
    parameter.size = 18;
    parameter.characters = "한국어/조선�?";
    BitmapFont koreanFont = generator.generateFont(parameter);
    parameter.characters = FreeTypeFontGenerator.DEFAULT_CHARS;
    generator = new FreeTypeFontGenerator(Gdx.files.internal("data/russkij.ttf"));
    BitmapFont cyrillicFont = generator.generateFont(parameter);
    generator.dispose();
    

    Distance field fonts - 可用于缩放/旋转字体,而不会有丑陋的文物
    gdx-smart-font - 非官方的libgdx插件,用于根据屏幕大小自动生成和缓存位图字体. (Uses FreeTypeFontGenerator)

    相关文章

      网友评论

        本文标题:LibGDX 游戏开发 之 位图字体 Bitmap fonts

        本文链接:https://www.haomeiwen.com/subject/diojpxtx.html