如何在SWT中从InputStream加载字体?
我需要从 SWT 中的 java Resource
或 InputStream
加载字体(.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不太好,但您始终可以将流写入临时文件,并使用可用的方法。
Not great but you can always write the stream to a temporary file, and use the available method.