在 Netbeans 中使用位图字体

发布于 2024-08-17 05:27:17 字数 269 浏览 6 评论 0 原文

是否可以在 Netbeans 中使用位图 (.fon) 字体?我有一种我特别喜欢的字体 (Raize 字体),但我不喜欢当我尝试将其设置为编辑器字体时,可以在列表中的任何位置看到它。 我可以在其他编辑器(Notepad++、pspad、Visual C++ Express 等)中使用它。我也无法在 jedit 中使用它。这个问题与java有关吗?

Is it possible to use bitmap (.fon) fonts in Netbeans? I have a font I particularly like (Raize font) and I don't see it anywhere on the list when I try to set it as the editor font.
I can use it in other editors (Notepad++, pspad, visual c++ express etc). I can't use it in jedit either. Is this issue java related?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

給妳壹絲溫柔 2024-08-24 05:27:17

根据 Java API 规范java.awt.font用于向 Java 添加字体支持的包提到支持以下类型的字体:

  • Type 1 字体
  • Type 1 Multiple Master 字体
  • OpenType 字体
  • TrueType 字体

看来 Microsoft 位图字体 (.fon )不支持,至少从我能找到的信息来看是这样。

与此相关的是,要获取当前在 Java 中安装的所有 Font 的列表,可以调用 GraphicsEnvironment.getAllFonts 它将返回 所有可以使用的字体的 Font[]

(请注意,GraphicsEnvironment 类无法实例化,但可以通过 GraphicsEnvironment.getLocalGraphicsEnvironment 方法。)

According the Java API Specification for the java.awt.font package, which is used to add font support to Java, mentions that the following types of fonts are supported:

  • Type 1 fonts
  • Type 1 Multiple Master fonts
  • OpenType fonts
  • TrueType fonts

It appears that Microsoft bitmap fonts (.fon) are not supported, at least from the information I was able to find.

On a related note, to get a listing of all the Fonts which are installed in Java at the current time, one can make a call to GraphicsEnvironment.getAllFonts which will return a Font[] of all the fonts which can be used.

(Note that the GraphicsEnvironment class cannot be instantiated, but an instance can be obtained by the GraphicsEnvironment.getLocalGraphicsEnvironment method.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文