如何将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/

10-11 15:16