I am making a small application in android that browse image from the gallery or take a picture from the camera. Then the selected image is compressed and uploaded to the server. I had compressed the image using Base64 String in android and for uploading image i am making a web service in ASP.NET. But i'm not sure how to decode the string(converted using Base64 in android) into image(the web service should be able to convert it). Please help me.
Thanks in advance
Base64converted compressed file is actually smaller than the original Jpeg? If I were you. I'd settle for just usingPOSTfile request and let the standard Gzip compression do whatever it can. That would save processing power on both the client and the server, and I strongly suspect it will save bandwidth as well.