Subi
Subi

Reputation: 141

Sending images in web service from iPhone using HTTP POST

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

Answers (1)

Hanon
Hanon

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

Related Questions