fix: ensure handling of pictures only applies to picture with an image attribute and image part of all extensions except with emf or wmf extensions to avoid bug in adding picture to doc

This commit is contained in:
Benichou 2025-03-30 16:02:01 -04:00
parent fbc4c4d103
commit 68be6e1873

View File

@ -393,7 +393,7 @@ class MsPowerpointDocumentBackend(DeclarativeDocumentBackend, PaginatedDocumentB
if shape.shape_type == MSO_SHAPE_TYPE.PICTURE:
# Handle Pictures
if hasattr(shape, "image"): # make sure the Picture shape has an image attribute
image_part = shape.image
image_part = shape.image # get the image part
if image_part.ext not in ["emf", "wmf"]: # all extensions except emf and wmf that lead to bug in adding picture to doc
self.handle_pictures(shape, parent_slide, slide_ind, doc, slide_size)
# If shape doesn't have any text, move on to the next shape