Kirim Bitmap sebagai Multipart Java Android Retrofit

RequestBody reqFile = RequestBody.create(MediaType.parse("image/*"), f);
MultipartBody.Part body = MultipartBody.Part.createFormData("upload", f.getName(), reqFile);
Lucky Lapwing