In which format is image data usually sent to the server when uploading files in a web application?

  • JSON
  • XML
  • Base64
  • CSV
Image data is usually sent to the server in Base64 format when uploading files in a web application. This format allows binary data (like images) to be represented as a string, making it easier to transmit as part of an HTTP request. The other options (JSON, XML, and CSV) are not typically used for sending binary data like images.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *