gpt4 book ai didi

html - NSAttributedString 的 initWithHTML 的默认 DPI 是多少?

转载 作者:行者123 更新时间:2023-12-03 17:21:33 25 4
gpt4 key购买 nike

我正在使用 NSAttributedString 的 -initWithHTML:documentAttributes: 方法从 HTML 代码创建属性字符串。我尝试转换的 HTML 代码可能包含以毫米为单位指定的字体大小。生成的属性字符串包含以磅为单位的字体大小。我想知道缩放文本以匹配我的目标 DPI 的默认 DPI。

在我的测试中,该方法似乎使用 ~96 DPI。

    NSString *html = @"<html><span style='font-size:10mm'>example</span></html>";
NSData *data = [html dataUsingEncoding:NSUTF8StringEncoding];

NSAttributedString *string = [[NSAttributedString alloc] initWithHTML:data documentAttributes:nil];

NSFont *font = [string attribute:NSFontAttributeName atIndex:0 effectiveRange:NULL];

CGFloat pointSize = [font pointSize];

CGFloat defaultDPI = pointSize / 10.0 * 25.4; // (1 mm == 25.4 inch)

NSLog(@"default DPI: %f.", defaultDPI); // returns 96.520000

但是,我找不到该号码的文档,并且担心它将来可能会发生变化。因此,我的问题是:

是否有更好的方法来获取默认 DPI?有没有办法在转换之前指定 DPI?

最佳答案

DPI 将根据显示设备的不同而有所不同。显示器上的典型值为 72dpi,浏览器中的典型值为 96dpi(或者至少假装为 96dpi,即使最终显示设备不支持)。这在 Mac 上会有所不同,尽管有 Retina 屏幕等。

如果您在类似浏览器的上下文中显示此内容,我会坚持标准 96dpi 假设并信任 font-size 指令。

关于html - NSAttributedString 的 initWithHTML 的默认 DPI 是多少?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24997006/

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