如何在 pt 或 inc 中获取字体宽度和高度



如何计算特定字体系列符号的宽度和高度。例如,我有Courier New(尺寸12pt)。我可以计算此字体的每个符号的宽度和高度(以磅或英寸为单位)吗?我应该使用哪个公式?

我已经想通了。对于这样的事情,我们可以使用 .net 方法 MeasureText 的静态类 TextRenderer

String text1 = "Measure this text";
Font arialBold = new Font("Arial", 12.0F);
Size textSize = TextRenderer.MeasureText(text1, arialBold);

相关内容

  • 没有找到相关文章

最新更新