gpt4 book ai didi

c# - 检查是字体等宽

转载 作者:太空宇宙 更新时间:2023-11-03 15:59:49 26 4
gpt4 key购买 nike

我有一个 System.Drawing.Font 对象。我如何检查字体是否为等宽字体?我尝试了类似 font.FontFamily == FontFamily.GenericMonospace 的方法,但它无法正常工作。

最佳答案

在 C# WPF 中,一个简单但有点昂贵的方法是这样的:

    private static char[] charSizes = new char[] { 'i', 'a', 'Z', '%', '#', 'a', 'B', 'l', 'm', ',', '.' };

private bool IsMonospaced(FontFamily family)
{
foreach (Typeface typeface in family.GetTypefaces())
{
double firstWidth = 0d;

foreach (char ch in charSizes)
{
FormattedText formattedText = new FormattedText(
ch.ToString(),
CultureInfo.CurrentCulture,
FlowDirection.LeftToRight,
typeface,
10d,
Brushes.Black,
new NumberSubstitution(),
1);
if (ch == 'i') // first char in list
{
firstWidth = formattedText.Width;
}
else
{
if (formattedText.Width != firstWidth)
return false;
}
}
}

return true;
}

关于c# - 检查是字体等宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21965321/

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