Function convertBlobToBase64

  • Converts a Blob into a Base64-encoded string.

    This function reads the provided Blob using FileReader and extracts the Base64 content from the resulting data URL.

    Returns

    A promise that resolves with the Base64 string representation of the blob.

    Throws

    If the blob cannot be read (e.g., due to an error), the promise rejects with an error message.

    Parameters

    • blob: Blob

      The Blob to convert into a Base64 string.

    Returns Promise<string>

Generated using TypeDoc