本文介绍了为什么这是不同的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

string text = "aaaaaa";
float width1 = e.Graphics.MeasureString(
    text,
    new Font("calibri", 12, GraphicsUnit.Pixel)).Width;

float width2 = 0;
for (int i = 0; i < text.Length; i++)
{
    width2 += e.Graphics.MeasureString(
        text[i].ToString(),
        new Font("calibri", 12, GraphicsUnit.Pixel)).Width;
}



我想测量Chracter的大小。

为什么width2和width1不完全相同?

我怎样才能正确衡量人物?



我尝试过的事情:



这是我最好的主意...我猜。


i want to measure size of Chracter.
why width2 and width1 is not exactly same?
and how can i measure Character rightway?

What I have tried:

this is my best idea... i guess.

推荐答案


这篇关于为什么这是不同的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 15:45