计算gdi 函数DrawString绘制的字符串象素长度和高度

 

graphics.MeasureString(wName, wName.GetLength(), &font1, PointF(nLINE_LEFT+45, nTop+10), &rtGdiplus);

 

带StringFormat(不带的话测出的值比实际的大):

RectF rectf;

StringFormat sf;

g.MeasureString(nick.c_str(), nick,size(), &font, ptF2,sf.GenericTypographic(), &rectf);

上一篇:深入理解overlayfs(二):使用与原理分析(转载)


下一篇:leetcode1763. 最长的美好子字符串(easy)