I want to upload edited Bitmap image to server using multipart uploading like this,
multipartEntity.addPart("ProfilePic", new FileBody(file));
But I can't convert Bitmap(android.graphics.Bitmap
) image to File(java.io.File
).
I tried to convert it to byte array but It also didn't worked.
Does anybody know inbuilt function of android or any solution to convert Bitmap to File?
Please help...