I am using json to communicate with the server.
I want to post and grab an image from the server.
How to convert the image in json format to send it, also when we get an image in json format and convert it back to image.
|
|
|
Please refer to the relevant section of the HTML spec for how to properly upload binary data. JSON objects are posted using a very inefficient encoding for binary data. Utilizing the existing frameworks and standards for uploading binary data will save you a tremendous amount of time. |
|||
|
|
|
Image is binary - you would be probably better send link to the image in your JSON otherwise you need to deal with base64 |
|||||
|
|
I found this site to be very helpful: http://iphone.zcentric.com/2008/08/29/post-a-uiimage-to-the-web/ You don't really need json to send to the server; just standard iPhone SDK methods. |
|||
|
|