노트별 분리

This commit is contained in:
2025-07-30 13:50:41 +09:00
parent 66dd64306c
commit 5ead0e8045
3 changed files with 758 additions and 47 deletions

View File

@@ -262,6 +262,14 @@ namespace DwgExtractorManual.Models
var textEntities = dwgExtractor.ExtractTextEntitiesWithHeight(filePath);
excelWriter.WriteHeightSortedData(textEntities, worksheet, fileName);
// Note 엔티티 추출 및 기록
var noteEntities = dwgExtractor.ExtractNotesFromDrawing(filePath);
if (noteEntities.Count > 0)
{
excelWriter.WriteNoteEntities(noteEntities, worksheet, fileName);
Debug.WriteLine($"[DEBUG] {fileName}: {noteEntities.Count}개 Note 엔티티 추가됨");
}
Debug.WriteLine($"[DEBUG] {fileName} 시트 완료: {textEntities.Count}개 엔티티");
}
catch (System.Exception ex)