Spaces:
Running
Running
File size: 1,054 Bytes
5db0893 da7a0a7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# Necessary imports
import sys
import base64
from typing import Optional
# local imports
from src.logger import logging
from src.exception import CustomExceptionHandling
def image_to_base64(image_path: str) -> Optional[str]:
"""
Convert an image file to a base64 encoded string.
Args:
image_path (str): The path to the image file.
Returns:
Optional[str]: The base64 encoded string representation of the image, or None if an error occurs.
"""
try:
# Open the image file and convert it to a base64 encoded string
with open(image_path, "rb") as img:
encoded_string = base64.b64encode(img.read())
# Log the successful conversion
logging.info(f"Image at {image_path} successfully encoded to base64.")
# Return the base64 encoded string
return encoded_string.decode("utf-8")
# Handle exceptions that may occur during the conversion
except Exception as e:
# Custom exception handling
raise CustomExceptionHandling(e, sys) from e
|