gpt4 book ai didi

swift - 使用 NSAttributedString 绘图时在非视网膜 Mac 上呈现模糊字体

转载 作者:行者123 更新时间:2023-11-28 13:44:49 25 4
gpt4 key购买 nike

我在 NSView 中使用 NSAttributedStringdraw(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-App comparison.

该应用程序的代码和 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com