| 156 | |
| 157 | @classmethod |
| 158 | def _pic_xml(cls): |
| 159 | return ( |
| 160 | "<pic:pic %s>\n" |
| 161 | " <pic:nvPicPr>\n" |
| 162 | ' <pic:cNvPr id="666" name="unnamed"/>\n' |
| 163 | " <pic:cNvPicPr/>\n" |
| 164 | " </pic:nvPicPr>\n" |
| 165 | " <pic:blipFill>\n" |
| 166 | " <a:blip/>\n" |
| 167 | " <a:stretch>\n" |
| 168 | " <a:fillRect/>\n" |
| 169 | " </a:stretch>\n" |
| 170 | " </pic:blipFill>\n" |
| 171 | " <pic:spPr>\n" |
| 172 | " <a:xfrm>\n" |
| 173 | ' <a:off x="0" y="0"/>\n' |
| 174 | ' <a:ext cx="914400" cy="914400"/>\n' |
| 175 | " </a:xfrm>\n" |
| 176 | ' <a:prstGeom prst="rect"/>\n' |
| 177 | " </pic:spPr>\n" |
| 178 | "</pic:pic>" % nsdecls("pic", "a", "r") |
| 179 | ) |
| 180 | |
| 181 | |
| 182 | class CT_PictureNonVisual(BaseOxmlElement): |