0

I have a requirement to send images to a server, the minimum number of images to be sent are 10 and it can increase, these images are camera captures and can be of low or high resolution images. These images are required for image processing in the server side.

What's the best practice for sending these files to the server?

Arun Abraham
  • 4,011
  • 14
  • 54
  • 75

1 Answers1

0
  1. Don't use Worklight adapters. They were not meant for media transfer (be it images or movies).

  2. Cordova supplies File API, so you can use it coupled with base64 encoding/decoding on the client and server, together with AJAX calls to send the data string or later processing.

Some related questions:

The topic was asked several times in the past, so best to search through some more questions.

Community
  • 1
  • 1
Idan Adar
  • 44,156
  • 13
  • 50
  • 89