如何让 C# 使用基于 css/svg font-family 字符串的字体?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要单独包围字体系列类型,而应将它们作为一个分组。
Don't surround the font family types individually, enclose them as a single grouping.