I need help to get the string from a blob that has a Base64string that is uploaded and the image details saved in an mySql database by a client using a third party software. Here is the code i use to get the byte from the mysql database
byte[] imageByte =( byte[]) (dtImages.Rows[0]["fldData"]);
this is how i try to read it get into a string so that i can convert it back. It will not allow me to perform this conversion as it is a byte.
string image1Str = Convert.FromBase64String(imageByte);
How can i read the string from this to perform the conversion, once i have the string i can then save it as an image.