WPF 中 FontSize 的定义

发布于 2024-08-23 08:16:05 字数 357 浏览 0 评论 0原文

我知道在 WPF 中,FontSize = 1/96 英寸(我认为与 1 像素相同)。 FontSize 尺寸是字符的高度、宽度还是对角线尺寸?我猜这是字体高度,但是 微软文档并没有真正说明它是什么。

另外,有没有一种简单的方法来获取字体大小的高度和宽度?

答案: 因此,看起来 FontSize 是高度,而宽度只能在等宽字体上确定(不知道实际字符),因为比例字体具有不同的宽度。

I know that in WPF, FontSize = 1/96 of an inch (same as 1 pixel I think). Is the FontSize dimension the height, the width, or diagonal size of a character? I would guess it's the font height, but the Microsoft documentation doesn't really indicate what it is.

Also, is there an easy way to get the height and width of a font size?

Answer:
So it looks like the FontSize is the height, and the width can only be determined (without knowing the actual character) on monospaced fonts since proportional fonts have varying widths.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逆蝶 2024-08-30 08:16:05

他们指的是版式字体中使用的字体大小。

您可以在这里阅读:维基百科:字体

字体和字体的大小传统上以磅为单位测量;2 点在不同时期的定义不同,但现在最流行的是 1⁄72 英寸(0.0139 英寸/0.35 毫米)的桌面出版点。当以印刷尺寸(点、kyus)指定时,em-square(一个不可见的盒子,通常比最高的上升部分到最低的下降部分的距离稍大)的高度会缩放为等于指定的大小。[3 ]例如,将 Helvetica 设置为 12 磅时,Helvetica 字体中定义的全角方形将缩放为 12 磅或 1⁄6 英寸(0.17 英寸/4.3 毫米)。然而,12 点 Helvetica 的任何特定元素都不需要精确测量 12 点。

这篇维基百科文章中所述的注释...72 是 WinForms 使用的。 WPF 切换到 96。

至于问题的第二部分,我从 MSDN 链接:

FormattedText formattedText = new FormattedText(
            textBox1.Text.Substring(0, 1),  
            CultureInfo.GetCultureInfo("en-us"),
            FlowDirection.LeftToRight,
            new Typeface(textBox1.FontFamily.ToString()),
             textBox1.FontSize,
            Brushes.Black 
            );

... formattedText.WidthInclusionTrailingWhitespace;

... formattedText.Height;

They are referring to Font Size as used in Typefaces for Typography.

You can read about it here: Wikipedia: Typeface

The size of typefaces and fonts is traditionally measured in points;2 point has been defined differently at different times, but now the most popular is the Desktop Publishing point of 1⁄72 in (0.0139 in/0.35 mm). When specified in typographic sizes (points, kyus), the height of an em-square, an invisible box which is typically a bit larger than the distance from the tallest ascender to the lowest descender, is scaled to equal the specified size.[3] For example, when setting Helvetica at 12 point, the em square defined in the Helvetica font is scaled to 12 points or 1⁄6 in (0.17 in/4.3 mm). Yet no particular element of 12-point Helvetica need measure exactly 12 points.

A note...72 as stated in this Wikipedia article is what WinForms used. WPF switched to 96.

As for the second part of your question, I found this resource from an MSDN Link:

FormattedText formattedText = new FormattedText(
            textBox1.Text.Substring(0, 1),  
            CultureInfo.GetCultureInfo("en-us"),
            FlowDirection.LeftToRight,
            new Typeface(textBox1.FontFamily.ToString()),
             textBox1.FontSize,
            Brushes.Black 
            );

... formattedText.WidthIncludingTrailingWhitespace;

... formattedText.Height;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文