I’m trying to upload an image to backendless files, the image is high resolution, and it is encoded to base64 on client-side, and on server-side I’m decoding it and save it as an image.
Does this error mean that I should reduce image resolution?
this is how I’m decoding it from base64 to byte array in business logic:
byteArray = Buffer.from(imagebase64, ‘base64’);