0

I am Developing an Android Based Application. I am Using .net webservice to upload the data. Here I am successfully able to upload all the data except Image Byes. I want to know how to send Image as Binary array to the .net webservice.

Lucifer
  • 28,605
  • 21
  • 86
  • 137

1 Answers1

-1

I think you can convert images in the Base64 string and then its easy to upload string on the server.

Just check this question for code of Converting image to Base64 string

Community
  • 1
  • 1
Paresh Mayani
  • 122,920
  • 69
  • 234
  • 290
  • can you give me any example site for it please ? – Lucifer Dec 27 '11 at 06:23
  • You have already mentioned that you are successful to upload all the data, then why do you require an example site? Just convert the image into string and upload the string. – Paresh Mayani Dec 27 '11 at 06:38