我将dwg带不同的条形和较大的(在平面上关联的数字),我将此文档转换为dxf以使用python和读取。我的问题是我的代码可以识别形式和事物,但不能识别与条形大号相关的字符串,只能打印带有Block的插入和框,但不能识别大号,每个人都知道原因,也许将文件转换为dxf或特定格式example of the number的文本 dwg(https://files.fm/u/bbr5687k)中的文档
import ezdxf as ez
doc = ez.readfile('ejemplof.dxf')
msp = doc.modelspace()
for entity in msp:
dxf_type = entity.dxftype()
print(dxf_type)
print (entity.dxfattribs())