如何让 C# 使用基于 css/svg font-family 字符串的字体?

发布于 2024-12-11 11:26:55 字数 626 浏览 0 评论 0原文

在 Microsoft 的 C# 的 SVG 渲染引擎中,font-family 属性定义如下:

[SvgAttribute("font-family")]
public virtual Font FontFamily
{
    get { return this._font; }
    set { this._font = value; this.IsPathDirty = true; }
}

但是,这只适用于诸如

<text style='font-family:"Lucida Sans Unicode";font-size:12px;'>

当指定多个 font-family 时

<text style='font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;'>

,它只会使用默认字体 (Times New Roman) 。

如何修改属性 FontFamily 以使用指定的第一个字体(如果存在)或后续字体(如果存在)?

In Microsoft's SVG Rendering Engine for C#, the font-family attribute is defined as follows:

[SvgAttribute("font-family")]
public virtual Font FontFamily
{
    get { return this._font; }
    set { this._font = value; this.IsPathDirty = true; }
}

However, this only works with something such as

<text style='font-family:"Lucida Sans Unicode";font-size:12px;'>

When multiple font-families, such as

<text style='font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;'>

are specified, it just resorts to the default font (Times New Roman).

How can modify the attribute FontFamily to use the first font specified, if it exists, or the succeeding fonts, if they exist?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

刘备忘录 2024-12-18 11:26:55

不要单独包围字体系列类型,而应将它们作为一个分组。

<text style='font-family:"Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica";font-size:12px;'>

Don't surround the font family types individually, enclose them as a single grouping.

<text style='font-family:"Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica";font-size:12px;'>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文