gpt4 book ai didi

.net - 如何将FormattedText字符串转换为基于几何的对象?

转载 作者:行者123 更新时间:2023-12-04 00:25:51 28 4
gpt4 key购买 nike

如何将FormattedText字符串转换为基于几何的对象?

我认为这个问题不需要太多解释,也无法考虑我能否提供很多其他细节...

我只需要将FormattedText转换成可以在数学上(几何上)使用的东西。

任何建议表示赞赏!

最佳答案

您可能正在寻找 FormattedText.BuildGeometry Method FormattedText.BuildHighlightGeometry Method ;这两个MSDN链接也都具有通常的示例。

基本用法如下:

// Create sample formatted text.
FormattedText formattedText = new FormattedText("Sample",
CultureInfo.GetCultureInfo("en-us"), FlowDirection.LeftToRight,
new Typeface("Verdana"), 16, System.Windows.Media.Brushes.Black);

// Build geometry object that represents the text.
Geometry normalGeometry = formattedText.BuildGeometry(
new System.Windows.Point(0, 0));

// Build geometry object that represents the highlight bounding box of the text.
Geometry highLightGeometry = formattedText.BuildHighlightGeometry(
new System.Windows.Point(0, 0));

关于.net - 如何将FormattedText字符串转换为基于几何的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1133382/

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