fsfsdf
fsfsdf
enpyxl.load_workbook(excel_path)
ws = wb.active
logging.info("Excel file loaded successfully with openpyxl")
print("Excel file loaded successfully with openpyxl")
# Get all images
images = ws._images
logging.info(f"Found {len(images)} embedded images with openpyxl")
print(f"Found {len(images)} embedded images")
if not images:
logging.warning("No embedded images found with openpyxl")
print("No embedded images found with openpyxl")
return
for img in images: