如何使用TextAnalyzer.GetTypographicFeatures方法



我需要在我的应用程序(C#(中获取给定字体的可用OpenType功能。我通过SharpDX使用DirectWrite,我过得很糟糕。

我知道最好的解决方案是使用这种方法:

SharpDX.DirectWrite.TextAnalyzer2.GetTypographicFeatures

但我不知道如何从中得到结果,因为我不知道从哪里获得参数。

这些是我需要提供的参数,以便获得字体功能:

    字体
  1. 人脸 字体
  2. 脚本分析 脚本分析
  3. 本地名称字符串
  4. maxTagCountint
  5. actualTagCountint
  6. 标签
  7. 字体特征标签

有人可以给我一个更好的解释或(理想情况下(一些代码。几乎没有关于它的文档,所以我不知道在哪里可以获得这些参数和/或它们的含义。

提前谢谢。

我终于想通了。感谢Buglehead给了我最后一块拼图。

下面是一个示例。在此代码中,我首先加载所有系统字体,然后获取特定字体,然后获取该特定字体的 FontFeatureTags。

using SharpDX.DirectWrite;
private void LoadFontFeatureTags()
{
    Factory f = new Factory(FactoryType.Isolated);
    Factory4 _factory = new Factory4(f.NativePointer);
    _factory.CreateFontCollectionFromFontSet(_factory.SystemFontSet, out FontCollection1 collection);
    List<SharpDX.DirectWrite.FontFamily> loadedFonts = new List<SharpDX.DirectWrite.FontFamily>();
    for (int i = 0; i < collection.FontFamilyCount; i++)
    {
        var family = collection.GetFontFamily(i);
        loadedFonts.Add(family);
    }
    var gabriolaFont = loadedFonts.FirstOrDefault(x => x.FamilyNames.GetString(0).Contains("Gabriola"));
    var gabriolaFirstChild = gabriolaFont.GetFont(0);
    Font3 f3 = new Font3(gabriolaFirstChild.NativePointer);
    f3.CreateFontFace(out FontFace3 face3);
    ScriptAnalysis analysis = new ScriptAnalysis();
    TextAnalyzer analyzer = new TextAnalyzer(f);
    TextAnalyzer2 analyzer2 = new TextAnalyzer2((IntPtr)analyzer);
    int maxTagCount = 32;
    FontFeatureTag[] featuresArray = new FontFeatureTag[maxTagCount];
    analyzer2.GetTypographicFeatures(face3, analysis, "es-US", maxTagCount, out int actualCount, featuresArray);
}

相关内容

  • 没有找到相关文章

最新更新