在macOS Sierra JavaScript for Automation中,我们可以写:
// helvetica12Width :: String -> Num
function helvetica12Width(str) {
return $.NSAttributedString.alloc.init.initWithString(
str
)
.size.width;
}
获取默认Helvetica 12中特定字符串的指标。我尚未设法做的是传递其他字体和字体大小的属性,并获取相应的指标。
有没有人从JXA或AppleScript发现了一个可以在这里工作的习语/语法?
更新:这是我尝试过的事情 - 显然不合时宜,因为字体大小/名称值的变化不会影响返回值:
(() => {
'use strict';
ObjC.import('AppKit');
return $.NSAttributedString.alloc.init.initWithStringAttributes(
"Substantiation", {
'NSFontAttributeName': $.NSFont.fontWithNameSize('Helvetica', 24)
}
)
.size.width
})();
答案 0 :(得分:1)
啊......这似乎是这样做的:
(function () {
'use strict';
ObjC.import('AppKit');
// show :: a -> String
const show = x => JSON.stringify(x, null, 2);
// stringSizeInFontAtPointSize :: String -> String -> Num
// -> {width:Num, height:Num}
function stringSizeInFontAtPointSize(str, fontName, points) {
return $.NSAttributedString.alloc.init.initWithStringAttributes(
str, $({
'NSFont': $.NSFont.fontWithNameSize(fontName, points)
})
)
.size;
}
// TEST -------------------------------------------------------------------
return show([
stringSizeInFontAtPointSize("hello World", "Geneva", 32),
stringSizeInFontAtPointSize("hello World", "Geneva", 64),
stringSizeInFontAtPointSize("hello World", "Helvetica", 64),
]);
})();