An |Image| object containing the image in this image part. Note this is a `pptx.image.Image` object, not a PIL Image.
(self)
| 71 | |
| 72 | @property |
| 73 | def image(self) -> Image: |
| 74 | """An |Image| object containing the image in this image part. |
| 75 | |
| 76 | Note this is a `pptx.image.Image` object, not a PIL Image. |
| 77 | """ |
| 78 | return Image(self._blob, self.desc) |
| 79 | |
| 80 | def scale(self, scaled_cx: int | None, scaled_cy: int | None) -> tuple[int, int]: |
| 81 | """Return scaled image dimensions in EMU based on the combination of parameters supplied. |