计算文字在AutoCAD中所占的长度,和字体样式,字高,宽高必有关

在AutoCAD中,经常需要在一个创建一个文字实体之前,先要计算出它根据字体样式,字高和宽高比在图纸中所占的宽度,比如在一大段文字排版的时候很有用。于是整理封装了一下这个函数:

[cpp]  view plain copy
  1. double YgxGeometry::TextLength(LPCSTR str, double h, double wr)  
  2. {  
  3.     if(strlen(str) == 0) return(0.);  
  4.     struct resbuf *list = NULL;  
  5.     ads_point bl,rt;  
  6.     char styleName[31] = {0};  
  7.     YgxAu()->CurrTextStyle(styleName);  
  8.   
  9.     list = acutBuildList(RTDXF0,"text",1,str,7,styleName,40,h,41,wr,51,0.,NULL);  
  10.   
  11.     acedTextBox(list,bl,rt);  
  12.     acutRelRb(list);  
  13.   
  14.     return fabs(bl[0]-rt[0]);  
  15. }  

其中YgxAu()->CurrTextStyle(styleName)是得到当前字体样式,函数如下:

[cpp]  view plain copy
  1. void YgxAcadUtil::CurrTextStyle(char styleName[])  
  2. {  
  3.     AcDbObjectId Id = CurrDB()->textstyle();  
  4.     AcDbTextStyleTableRecord* pStyleRecord;  
  5.     if(acdbOpenObject((AcDbObject *&)pStyleRecord, Id, AcDb::kForRead) == Acad::eOk) {  
  6.         const char *name;  
  7.         pStyleRecord->getName(name);  
  8.         strcpy(styleName, name);  
  9.         pStyleRecord->close();  
  10.     }  
  11.     else strcpy(styleName, "STANDARD");  
  12. }  

其中CurrDB()就是得到当前数据库,acdbHostApplicationServices()->workingDatabase();

你可能感兴趣的:(AutoCAD,.NET二次开发,list,数据库,null)