views:

248

answers:

1

i have a writableBitmap object which i want to save on server. Is there any way to save it may be using webservice??

+1  A: 

You should be able to send the byte[] as a Stream to your own web service, or serialize it and send it however, wherever, you like.

Jeff Wilcox