Return an |ImagePart| instance newly created from `image` and assigned `partname`.
(cls, image: Image, partname: PackURI)
| 58 | |
| 59 | @classmethod |
| 60 | def from_image(cls, image: Image, partname: PackURI): |
| 61 | """Return an |ImagePart| instance newly created from `image` and assigned |
| 62 | `partname`.""" |
| 63 | return ImagePart(partname, image.content_type, image.blob, image) |
| 64 | |
| 65 | @property |
| 66 | def image(self) -> Image: |