Firstly a short description of what I have
- Images of the same size and format are being generated inside my iOS app.
- Every time an image is generated, it should be uploaded into some web service.
What I want to do is basically to use as less internet traffic as its possible. So basically I would like to know your suggestions on how to do this ?
I option that I though is to send first image to server, then the diff of the second image with the first one. So basically I'm able to reserve some traffic with this method. So also would like to know if anybody has done this kind of stuff, how have you implemented it ? i.e. what third party libraries etc.
Thanks in advance.