mozman / ezdxf

Python interface to DXF
https://ezdxf.mozman.at
MIT License
937 stars 191 forks source link

explode ACAD_PROXY_ENTITY , return none #978

Closed xbdr419 closed 1 year ago

xbdr419 commented 1 year ago

test.zip

f = 'test.dxf'
doc = ezdxf.readfile(f)
msp = doc.modelspace()
proxy_entity = msp.query('ACAD_PROXY_ENTITY')[0]
entity = proxy_entity.explode(target_layout=msp)
print(len(ents))

0

Hello, the help document states that ACAD_PROXY_ENTITY can be exploded, but I didn't return any entity data after exploding. I want to get text,Is there a way to solve this?