明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1387|回复: 2

各位看看为什么?

[复制链接]
发表于 2003-7-16 17:20:00 | 显示全部楼层 |阅读模式
下面是偶写的一个写字符串的函数,我已经在别的地方设置了字体样式的高宽比为0.75,当我用下面的函数时高宽比却仍然是1,怎么回事?
不会是还要调用一个setXXXXX的函数吧?
void db_text(const char *style, ads_point sp, ads_real higher,
                         ads_real text_alf, const char *text, AcCmColor ec,
                         ads_name *tn)
{
        AcGePoint3d ip(sp[X], sp[Y], sp[Z]);                  // 插入点
        AcDbObjectId tid;                                     // 字体样式ID
        AcDbTextStyleTable *pTST;
        acdbCurDwg()->getTextStyleTable(pTST, AcDb::kForRead);
        pTST->getAt(style, tid);                              // 取得字体样式ID
        pTST->close();

        AcDbText *pText = new AcDbText();
        pText->setPosition(ip);                  // 插入点
        pText->setHeight(higher);                // 字高
        pText->setRotation(text_alf);            // 旋转角
        pText->setTextString(text);              // 文字内容
        pText->setColor(ec);                     // 颜色
        pText->setTextStyle(tid);                // 样式       

        AcDbObjectId textId = AddObjectToDWG(pText);   // 添加到图形
        acdbGetAdsName(*tn, textId);                   // 返回文字的名称
        pText->close();                          // 释放指针   
}
发表于 2003-7-17 10:13:00 | 显示全部楼层
发表于 2003-7-18 10:29:00 | 显示全部楼层
须先setTextStyle(...)
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 16:22 , Processed in 0.139025 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表