如何计算“尺寸” wpf 中的 FormattedText 或 GlyphRun?
在WPF4中,我如何计算drawingvisual
的FormattedText
或GlyphRun
的'Size'
。
我在画布中使用绘图视觉。当我更改文本大小或文本时,会发生更改,但实际宽度和高度相同或不会更新。
Using dc As DrawingContext = drawingvisual.RenderOpen
Dim ft As New FormattedText(...)
dc.DrawText(ft, New Point(0, 0))
dc.Close()
End Using
In WPF4, how can i calculate the 'Size'
of FormattedText
or GlyphRun
for a drawingvisual
.
I'm using drawingvisual in a canvas. When i change text size or text, changes occur but Actual Width and Height are same or don't get updated.
Using dc As DrawingContext = drawingvisual.RenderOpen
Dim ft As New FormattedText(...)
dc.DrawText(ft, New Point(0, 0))
dc.Close()
End Using
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
初始化 FormattedText 后,它的 Width 和 Height 成员等于给定参数的实际渲染大小。事实上,更改参数会立即更新它们,例如:
编辑 GlyphRun: 当您创建 GlyphRun 时,您已经为其指定了每个字符的预先宽度,因此您可以添加这些宽度。要获取高度,请使用 GlyphTypeface.Baseline * FontSize
Once you've initialized the FormattedText, it has Width and Height members that are equal to its actual rendered size given its parameters. In fact, changing parameters updates them immediately, e,g,:
Edit for GlyphRun: When you created your GlyphRun you already gave it the advance widths for each character, so you add those for the width. To get the height, use the GlyphTypeface.Baseline * FontSize
顺便说一句:我注意到使用 DrawingContext.DrawGlyphRun 与 DrawingContext.DrawFormattedText 相比,性能提高了大约 10 倍。
GlyphRun 没有详细记录,但是一旦您阅读这篇文章< /a> 你应该能够理解它是如何工作的。
Just as a side note: I've notice around 10x performance increase when using DrawingContext.DrawGlyphRun vs DrawingContext.DrawFormattedText.
GlyphRun is not well-documented, but once you read this article you should be able to understand how it works.