## 현상 - 머리말/꼬리말에 포함된 Picture(그림) 컨트롤이 렌더링되지 않음 - 꼬리말에 2개의 TAC Picture가 있을 때 두 번째 이미지가 축소되어 첫 번째 아래에 배치됨 ## 원인 - `layout_header_footer_paragraphs`에서 `has_table`과 `has_shape`만 검사하고 `has_picture`를 처리하지 않음 - `layout_shape` 호출 시 `bin_data_content`에 `&[]`가 전달됨 ## 수정 - `has_picture` 분기 추가: TAC가 아닌 Picture는 `layout_picture`로 직접 렌더링, TAC Picture는 `layout_paragraph`로 인라인 배치 - `layout_shape` 호출 시 실제 `bin_data_content` 전달 ## 대상 파일 - `samples/pic-in-head-02.hwp`
현상
원인
layout_header_footer_paragraphs에서has_table과has_shape만 검사하고has_picture를 처리하지 않음layout_shape호출 시bin_data_content에&[]가 전달됨수정
has_picture분기 추가: TAC가 아닌 Picture는layout_picture로 직접 렌더링, TAC Picture는layout_paragraph로 인라인 배치layout_shape호출 시 실제bin_data_content전달대상 파일
samples/pic-in-head-02.hwp