作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经编写了一个简单的代码来检查给定的自定义字体文件(.ttf 或 .otf)中的字形是否可用,为此我正在使用:
Font.canDisplay()
当我在 windows 上测试我的代码时它工作正常,但在 mac 上它总是返回 true,即使该字形不可用,我猜字体替换选项在 mac 中默认是打开的,有什么建议如何关闭它?
Environment:
VM Version 1.6.0_26
Mac OS X 10.7.2
字体文件(truetype):http://www.fontsc.com/font/depth-charge (你可以在这个网站上查看字符映射,字形在 CAP 中不可用)
最佳答案
在GraphicsEnvironment中注册的Native OS和Font有区别,
需要检查是否Font is there registred在 native 操作系统中
.
Font font = Font.createFont(int fontFormat, File fontFile)
/(int fontFormat, InputStream fontStream)
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
ge.registerFont(font);
if (font.canDisplay()/canDisplayUpTo()){
//your code with font.....
}
canDisplay()/canDisplayUpTo()
可以是 createGlyphVector,则输出关于java - Font.canDisplay 在 mac 上总是返回 true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17008081/
我已经编写了一个简单的代码来检查给定的自定义字体文件(.ttf 或 .otf)中的字形是否可用,为此我正在使用: Font.canDisplay() 当我在 windows 上测试我的代码时它工作正常
我是一名优秀的程序员,十分优秀!