Base64 Android encode to PHP decode make error
- by studio lambda
I'm a french guy, so, I'm sorry for my english...
I'm developing an Android App which communicate with a PHP REST service. So, when I try to encode an image file into Base64 like this :
InputStream fileInputStream = context.getContentResolver().openInputStream(uri);
BufferedInputStream in = new BufferedInputStream(fileInputStream);
StringWriter…