明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1479|回复: 10

[源码] 普通字转属性字的代码

[复制链接]
发表于 2023-9-26 17:25:01 | 显示全部楼层 |阅读模式
看了下论坛上有属性字转普通字的,没有普通字转属性字的lsp源码,大佬们能发一个吗?
"觉得好,就打赏"
还没有人打赏,支持一下
发表于 2024-4-30 15:21:27 | 显示全部楼层
  1. ;;; 批量文本转属性定义 txtat Define the top-level function for the command "txtatt"
  2. (defun c:txtatt (/ ss ent)
  3.   (if (setq ss (ssget "_:L" '((0 . "TEXT,MTEXT"))))
  4.     (progn
  5.       (setq i 0)
  6.       (repeat (sslength ss)
  7.         (setq ent (ssname ss i))
  8.         (txt2att ent)
  9.         (setq i (1+ i))
  10.       )
  11.     )
  12.     (if (setq ent (entsel "\nSelect text entity: "))
  13.       (txt2att (car ent))
  14.       (prompt "No entity was selected.")
  15.     )
  16.   )
  17.   (princ)
  18. )
  19. ;;; Define the core function that converts a text entity to an attribute definition
  20. (defun txt2att (ent / entdxf newdxf malst tem)
  21.   (setq entdxf (entget ent)
  22.         newdxf '((0 . "ATTDEF"))
  23.         newdxf (append
  24.                  newdxf
  25.                  (list
  26.                    (cons 1 (cdr (assoc 1 entdxf)))
  27.                    (cons 2 (cdr (assoc 1 entdxf)))
  28.                    (cons 3 (cdr (assoc 1 entdxf)))
  29.                    (cons 70 0)
  30.                  )
  31.                )
  32.         malst (list 7 8 10 11 39 40 41 50 51 62 71 72 73)
  33.   )
  34.   (foreach mai malst
  35.     (setq tem (assoc mai entdxf))
  36.     (if (/= tem nil)
  37.       (setq newdxf (append newdxf (list tem)))
  38.     )
  39.   )
  40.   (entdel ent)
  41.   (entmake newdxf)
  42. )
回复 支持 1 反对 0

使用道具 举报

发表于 2023-9-27 09:41:23 | 显示全部楼层
本帖最后由 wzg356 于 2023-9-27 10:08 编辑


;;; 文本转属性 
(defun txt2att (ent / entdxf newdxf malst tem)
(setq entdxf (entget ent)
    newdxf '((0 . "ATTDEF"))
    newdxf (append
       newdxf
       (list
         (cons 1 (cdr (assoc 1 entdxf)))
         (cons 2 (cdr (assoc 1 entdxf)))
         (cons 3 (cdr (assoc 1 entdxf)))
         (cons 70 0)
       )
     )
    malst (list 7 8 10 11 39 40 41 50 51 62 71 72 73)
)
(foreach mai malst
  (setq tem (assoc mai entdxf))
  (if (/= tem nil)
  (setq newdxf (append
         newdxf
         (list (assoc mai entdxf))
         )
  )
  )
)
(entdel ent)
(entmake newdxf)
)

评分

参与人数 1明经币 +1 收起 理由
Bao_lai + 1 很给力!

查看全部评分

 楼主| 发表于 2023-9-27 10:24:11 | 显示全部楼层
本帖最后由 wide 于 2023-9-27 10:32 编辑

谢谢二楼的大佬。
发表于 2024-4-16 17:35:20 | 显示全部楼层
;;; ;; 文本转属性txtatt Define the top-level function for the command "txtatt"
(defun c:txtatt (/ ent)
  (if (setq ent (entsel "\nSelect text entity: ")) ; Prompt user to select an entity
    (txt2att (car ent)) ; Call the core function with the selected entity
    (prompt "No entity was selected.")
  )
)
;;; Define the core function that converts a text entity to an attribute definition
(defun txt2att (ent / entdxf newdxf malst tem)
  (setq entdxf (entget ent)
        newdxf '((0 . "ATTDEF"))
        newdxf (append
                 newdxf
                 (list
                   (cons 1 (cdr (assoc 1 entdxf)))
                   (cons 2 (cdr (assoc 1 entdxf)))
                   (cons 3 (cdr (assoc 1 entdxf)))
                   (cons 70 0)
                 )
               )
        malst (list 7 8 10 11 39 40 41 50 51 62 71 72 73)
  )
  (foreach mai malst
    (setq tem (assoc mai entdxf))
    (if (/= tem nil)
      (setq newdxf (append newdxf (list tem)))
    )
  )
  (entdel ent)
  (entmake newdxf)
)
发表于 2024-4-30 09:15:47 | 显示全部楼层
moshouhot 发表于 2024-4-16 17:35
;;; ;; 文本转属性txtatt Define the top-level function for the command "txtatt"
(defun c:txtatt (/  ...

请问可以将多个文本转为一个属性块的多个属性吗?
发表于 2024-4-30 14:10:31 | 显示全部楼层
h2295 发表于 2024-4-30 09:15
请问可以将多个文本转为一个属性块的多个属性吗?

问我不如问chatgpt
发表于 2024-4-30 14:45:36 | 显示全部楼层

问了3.5的,他也不知道
发表于 2024-4-30 21:24:51 | 显示全部楼层

可以再加个将转好后的属性合并成一个block吗,我刚试了没成功
发表于 2024-5-5 18:32:13 | 显示全部楼层

转换后的对象会偏移怎么处理
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 17:49 , Processed in 0.191384 second(s), 27 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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