إعداد كائنات ATTRIB و MTEXT
إعداد كائنات ATTRIB و MTEXT
واجهة برمجة التطبيقات Aspose.CAD لـ Java تتيح لك تعيين السمة في ملف DXF AutoCAD. واجهة برمجة التطبيقات Aspose.CAD تعرض CadText الفئة التي تمثل كيانات النص في ملف DXF AutoCAD. الفئة CadMText متضمنة في واجهة برمجة التطبيقات Aspose.CAD لأنه قد تحتوي بعض الكيانات الأخرى أيضًا على نص. يمكنك إنشاء عدة فقرات من النص ككائن نص متعدد الخطوط (mtext) واحد. فيما يلي عرض للشفرة لتعيين كائنات السمة و MTEXT. مقتطف الشفرة يفسر نفسه.
مثال على الشفرة
String srcFile = dataDir + "conic_pyramid.dxf"; | |
CadImage cadImage =(CadImage) Image.load(srcFile); | |
List<CadBaseEntity> mtextList = new ArrayList<CadBaseEntity>(); | |
List<CadBaseEntity> attribList = new ArrayList<CadBaseEntity>(); | |
try | |
{ | |
for (CadBaseEntity entity : cadImage.getEntities()) | |
{ | |
if (entity.getTypeName() == CadEntityTypeName.MTEXT) | |
{ | |
mtextList.add(entity); | |
} | |
if (entity.getTypeName() == CadEntityTypeName.INSERT) | |
{ | |
for (CadBaseEntity childObject : entity.getChildObjects()) | |
{ | |
if (childObject.getTypeName() == CadEntityTypeName.ATTRIB) | |
{ | |
attribList.add(childObject); | |
} | |
} | |
} | |
} | |
System.out.println("MText Size: "+ mtextList.size()); | |
System.out.println("Attribute Size: "+ attribList.size()); | |
} | |
finally | |
{ | |
cadImage.dispose(); | |
} | |