Reputation: 141
I need to send the images to the server. Images should be converted as byte array. How to convert image into byte array and send it in a web service?
Upvotes: 0
Views: 281
Reputation: 3927
Use either UIImageJPEGRepresentation
or UIImagePNGRepresentation
which will return NSData*
.
And set your body content-type
as image/jpg
or image/png
Upvotes: 2