如何在SWT中从InputStream加载字体?

发布于 2024-08-30 07:29:55 字数 603 浏览 4 评论 0原文

我需要从 SWT 中的 java ResourceInputStream 加载字体(.otf.ttf)文件。

org.eclipse.swt.graphics.Device.loadFont(String path) 允许我(示例)从字体文件路径加载字体(并且它有效),但没有相应的方法从任何其他源加载它。

我正在考虑使用 java.awt.Font.createFont(int fontFormat, InputStream fontStream) ,然后构建 org.eclipse.swt.graphics.FontData 和 org AWT java.awt.Font 对象中的 .eclipse.swt.graphics.Font 对象。

因为我还没有尝试过这个选项(我什至不知道它是否有效),我只是想知道是否还有其他可用的选项?

I need to load font (.otf or .ttf) file from java Resource or InputStream in SWT.

org.eclipse.swt.graphics.Device.loadFont(String path) allows me (example) to load font from font file path (and it works), but there is no corresponding method to load it from any other source.

I was thinking of using java.awt.Font.createFont(int fontFormat, InputStream fontStream) and then building org.eclipse.swt.graphics.FontData and org.eclipse.swt.graphics.Font objects out of AWT java.awt.Font object.

Since I haven't tried that option yet (I don't even know if it works that way) I was just wondering if there are any other options available?

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

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

发布评论

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

评论(1

2024-09-06 07:29:55

不太好,但您始终可以将流写入临时文件,并使用可用的方法。

Not great but you can always write the stream to a temporary file, and use the available method.

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