在 Java Applet 中使用外部字体
是否可以使用用户计算机上没有的字体来显示 java 小程序中的文本。 就像几乎以 @fontface 方式链接到与 java 小程序位于同一位置的 ttf 字体文件。
Is it possible to use a font not on the user's machine for text displayed in a java applet.
Like linking to a ttf font file in the same location as the java applet almost in an @fontface fashion.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
Font.createFont
与fontFormat
TRUETYPE_FONT
:如 Sun-Tutorial 使用文本 API 返回的字体大小为
1 pt
,您可以更改此设置然后:You can use
Font.createFont
withfontFormat
TRUETYPE_FONT
:As also described in Sun-Tutorial Working with Text APIs the returned font size is
1 pt
, you can change this afterwards: