如何计算GDI +中两个字符之间的空间?

时间:2015-03-03 11:02:52

标签: c#

我在Graphics中绘制字符集,通过使用GraphicsPath为每个字符计算点数。我需要知道如何计算两个字符之间的距离?

我正在使用此代码生成点

PointF [] pnts;

var p=new GraphicsPath();

path.AddString("A","Arial",(int)FontStyle.Regular,50,new pointF(0f,0f),StringFormat.GenericDefault);

Matrix m=new Matric(1,0,0,1,0,0);

path.Flatten(m,1,0f);

pnts=path.pathpoints;

我使用上面的代码获得所有角色的分数。

现在我正在使用上面代码生成的两个字符组合。例如“AB”

帮我计算两个字符之间应该给出的字符空间? 在此先感谢..

0 个答案:

没有答案