I am trying to fetch the entities from dxf file.
final DxfImage cadImage = (DxfImage)Image.load(inputDxfFilePath);
cadImage.getEntities().stream().forEach(e->{System.out.println(e.getId());});
getEntities not returning all the entities in the dxf file. Example, object of type Line is not fetching.
image.png (4.3 KB)
Can you please help here.