Source code for langchain_core.utils.image
import base64
import mimetypes
[docs]def encode_image(image_path: str) -> str:
    """Get base64 string from image URI.
    Args:
        image_path: The path to the image.
    Returns:
        The base64 string of the image.
    """
    with open(image_path, "rb") as image_file:
        return base64.b64encode(image_file.read()).decode("utf-8") 
[docs]def image_to_data_url(image_path: str) -> str:
    """Get data URL from image URI.
    Args:
        image_path: The path to the image.
    Returns:
        The data URL of the image.
    """
    encoding = encode_image(image_path)
    mime_type = mimetypes.guess_type(image_path)[0]
    return f"data:{mime_type};base64,{encoding}"