Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在Minecraft游戏中,开发人员使用 PNG 文件作为屏幕字体。
我将如何在我的 Java 应用程序中执行此操作?
Java 字体呈现系统仅假定可缩放字体,例如 TrueType 字体,它们根据参数化曲线描述字形的形状。
不支持位图字体,因此您必须在自己的代码中布置字形。因此,如果您想在 (x, y) 位置显示字符串,则需要查找位图字体的形状,然后找到第一个字母的形状,在 (x,y) 处绘制它,找到下一个字母'形状,将其绘制到 (x+fontWidth, y) 等。