gpt4 book ai didi

c# a with umlaut 错误的字体 openxml

转载 作者:太空宇宙 更新时间:2023-11-03 10:46:41 25 4
gpt4 key购买 nike

我在使用 openxml 时遇到字符元音变音的问题。字符串中的每个字符都使用 Arial,但 ä 使用 Calibri。我真的不知道为什么。

有人可以帮助我吗?

这是我的代码:

        DocumentFormat.OpenXml.Wordprocessing.Run run = new DocumentFormat.OpenXml.Wordprocessing.Run();

RunProperties runProp = new RunProperties(); // Create run properties.
RunFonts runFont = new RunFonts(); // Create font
runFont.Ascii = "Arial"; // Specify font family

runProp.Append(runFont);

run.Append(runProp);
run.Append(new Text("Kapazität"));

最佳答案

您需要指定 RunFonts 对象的 HighAnsi 属性。

runFont.HighAnsi = "Arial";

如您所料,Ascii 字体名称仅考虑 ASCII 字符(以及非常短范围的 Unicode U+0000-U+007F)。变音字符位于“扩展”unicode 范围内,而 HighAnsi 负责该字符集的大部分内容。

关于c# a with umlaut 错误的字体 openxml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23106775/

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