답변:
tl; dr : 기본 도형 채우기이며 도형이 없으면 엄격하게 필요하지 않습니다.
XLSX, DOCX 및 기타 형식은 OPC (오픈 패키징 규칙)를 사용하여 zip 컨테이너를 요구하고 파일을 배치하는 방법을 설명합니다. 인식 할 수없는 파일이 있으면 다양한 관계 파일을보십시오 (.rels로 끝남).
이 경우 관련 행은 테마 관계 파일에서 찾을 수 있습니다 xl/theme/_rels/theme1.xml.rels
.
<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="../media/image1.png"/>
파일은로 참조 xl/theme/theme1.xml
됩니다 rId1
. ECMA-376을 가이드로 사용하면 기본 모양 채우기로 참조됩니다.
<a:objectDefaults> <-- shape/line/text defaults
<a:spDef> <-- shape defaults
<a:spPr> <-- shape properties
<a:blipFill rotWithShape="1"> <-- picture fill
<a:blip r:embed="rId1"/> <-- references the picture
모양이 없으면 작가가 이미지를 생략해서는 안됩니다.
zip -d myFile.xlsx xl/media/image1.png