You should check Backend controller how it gets form-data. When client sends image using form-data, backend can receive image by using @RequestPart Annotation.
I tested this using PostMan and it succeeded.
Here's an example.
@PostMapping("/api/images")
public void uploadImage(@RequestPart MultipartFile file) {
...
}
I hope it works.