天气与日历 切换到窄版

 找回密码
 立即注册
中国膜结构网
十大进口膜材评选 十大国产膜材评选 十大膜结构设计评选 十大膜结构公司评选
查看: 138|回复: 0

[每日一码] ARX实例代码 -- 获取实体的RGB颜色

[复制链接]
  • TA的每日心情
    开心
    昨天 06:36
  • 签到天数: 15 天

    [LV.4]偶尔看看III

    105

    主题

    11

    回帖

    1308

    积分

    管理员

    积分
    1308
    QQ
    发表于 2024-3-14 19:39:56 | 显示全部楼层 |阅读模式
    1. static COLORREF GetRGBFromEntity( AcDbEntity *ent )
    2. {
    3.   COLORREF colorRef = RGB(255, 255, 255);
    4.   AcCmColor Color = ent->color();
    5.   AcCmEntityColor::ColorMethod ColorMethod = Color.colorMethod();
    6.   switch(ColorMethod)
    7.   {
    8.   case AcCmEntityColor::kByACI:
    9.     {        
    10.       long acirgb, r,g,b;
    11.       acirgb = AcCmEntityColor::lookUpRGB(Color.colorIndex());
    12.       b = ( acirgb & 0xff00L );
    13.       g = ( acirgb & 0xff00L ) >> 8;
    14.       r = acirgb >> 16;
    15.       colorRef = RGB( r, g, b);
    16.       break;
    17.     }
    18.   }
    19.   return colorRef;
    20. }
    复制代码

     

     

     

     

    [每日一码] ARX实例代码 -- 获取实体的RGB颜色
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|Archiver|中国膜结构网|中国膜结构协会|进口膜材|国产膜材|ETFE|PVDF|PTFE|设计|施工|安装|车棚|看台|污水池|中国膜结构网_中国空间膜结构协会

    GMT+8, 2024-11-1 13:31 , Processed in 0.139730 second(s), 25 queries .

    Powered by Discuz! X3.5

    © 2001-2024 Discuz! Team.

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