码迷,mamicode.com
首页 > 编程语言 > 详细

windows C++如何根据文本字符串计算其绘制需占用宽度

时间:2019-09-18 00:27:22      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:code   etl   ring   windows   sdn   select   render   学习   ros   

分析

计算某串文本在绘制UI上需要占用的宽度,需要以下几个要素:

  • 字符串本身
  • 所使用的字体
    字体会影响所绘制的文字的宽度——那是理所当然的
  • 所使用的GDI或GDI+对象

方法

GDI

::SelectObject(hDC, hFont);
//第四个参数:指向SIZE结构的指针,该结构中字符串的尺寸将被返回。
::GetTextExtentPoint32(hDC, str, StrLen(str), &sizeText); 

GDI+

  • 比GDI复杂,需要使用到GDI+对象的APIMeasureString
Gdiplus::RectF rc1(0, 0, 5000, 2000);
Gdiplus::RectF rc2(0, 0, 0, 0);
g.MeasureString(str, -1, pFont, rc1, pStrFormat, &rc2);
return rc2.Width;
  • 其中参数4是Gdiplus::StringFormat,类似的赋值方式如下:
        Gdiplus::StringFormat* pStrFormat = new Gdiplus::StringFormat();
        pStrFormat->SetAlignment(enHAlign);
        pStrFormat->SetLineAlignment(enVAlign);
        If_Do(nFormat != 0, pStrFormat->SetFormatFlags(nFormat));

windows C++如何根据文本字符串计算其绘制需占用宽度

标签:code   etl   ring   windows   sdn   select   render   学习   ros   

原文地址:https://www.cnblogs.com/HelloGreen/p/11538011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!