Adobe illustrator COM库找不到字体

时间:2017-09-10 14:46:57

标签: c# com adobe-illustrator

我正在为adobe illustrator创建一个应用程序。它在图片上贴上了一些标签。 这是代码:

        TextFrame frame = page.Layers["textLayer"].TextFrames.Add();
        frame .Contents = "Test";
        frame .TextRange.CharacterAttributes.TextFont = _illustratorApp.TextFonts.GetFontByName("Arial Black");
        frame .TextRange.CharacterAttributes.Size = 48;

它有效,但插图画家无法按名称查找字体,它看起来像这样:

enter image description here

看起来像

enter image description here

如果我将它设置为mannualy它看起来不错。我做错了什么?

P.S。如果我设置字体mannualy它的名字是相同的

0 个答案:

没有答案