作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 NSView
中使用 NSAttributedString
的 draw(at:)
函数以自定义字体呈现一些文本在我的 window 里。
但是,当在非 Retina MacBook 上运行时(无论是在内部显示器上还是在外部 LCD 上),该字体看起来都非常模糊且“太重”。
由于我能够在同一台机器上的 Sketch 中完美地重现所需的结果,我假设这是我的代码的问题。
到目前为止,这是我的代码:
import Cocoa
class StepNameLabel: NSView {
// Im aware that this is not the intended way of loading Apple's system fonts
// However, this was the best way I could find to make sure that both Sketch
// and the app were using the exact same fonts.
var font = NSFont(name: "SF Pro Text Semibold", size: 22)
override func draw(_ dirtyRect: NSRect) {
super.draw(dirtyRect)
let text = "Choose your Images"
let attributes: [NSAttributedString.Key: Any] = [
.font: font,
.foregroundColor: NSColor.white
]
print(font?.fontName)
let drawableString = NSAttributedString(string: text, attributes: attributes)
frame.size = drawableString.size()
drawableString.draw(at: NSPoint(x: 0, y: 0))
}
}
这是一张显示 Sketch 文件和在同一显示器上运行的应用程序之间的区别的屏幕截图(左:Sketch 应用程序中的图形,右:上述代码的输出):
该应用程序的代码和 Sketch 图形均使用 Apple 的“SF Pro Text”字体,字体粗细为“Semibold”,大小为 22 个单位。
如果您能帮助找出问题所在,我们将不胜感激。
最佳答案
这可能就是臭名昭著的“半像素”问题。尝试:
drawableString.draw(at: NSPoint(x: 0.5, y: 0.5))
有一些关于这个的信息here (在页面中搜索“点和像素”)。
关于swift - 使用 NSAttributedString 绘图时在非视网膜 Mac 上呈现模糊字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55540955/
我是一名优秀的程序员,十分优秀!