Top "Base64" questions

Base64 is a set of encoding schemes that represent binary data in an ASCII string format.

Using JavaScript to display a Blob

I am retrieving a Blob image from a database, and I'd like to be able to view that image using …

javascript image base64 blob
convert base64 to image in javascript/jquery

I have written some code for image capturing using javascript/jquery Below is the code: function capture_image(){ alert("capture_…

javascript jquery base64
How to check whether a string is Base64 encoded or not

I want to decode a Base64 encoded string, then store it in my database. If the input is not Base64 …

base64
The input is not a valid Base-64 string as it contains a non-base 64 character

I have a REST service that reads a file and sends it to another console application after converting it to …

c# file-io base64
Convert between UIImage and Base64 string

Does anyone know how to convert a UIImage to a Base64 string, and then reverse it? I have the below …

ios swift uiimage base64 nsdata
How can I convert an image into a Base64 string?

What is the code to transform an image (maximum of 200 KB) into a Base64 String? I need to know how …

android base64
Invalid length for a Base-64 char array

As the title says, I am getting: Invalid length for a Base-64 char array. I have read about this problem …

c# asp.net viewstate base64
Python: Ignore 'Incorrect padding' error when base64 decoding

I have some data that is base64 encoded that I want to convert back to binary even if there is …

python base64
Convert an image (selected by path) to base64 string

How do you convert an image from a path on the user's computer to a base64 string in C#? For …

c# image base64
ArrayBuffer to base64 encoded string

I need an efficient (read native) way to convert an ArrayBuffer to a base64 string which needs to be used …

javascript encoding base64 arraybuffer