I have a requireemnt in which I have to upload a WriteableBitmap generated as an image in to SharePoint document library. Can anyone please help me ? Thank you.

link|improve this question

73% accept rate
Be specific, "Please help me" is not enough information. What have you tried so far? – AnthonyWJones Aug 13 '11 at 17:49
feedback

2 Answers

Heres an extension method to convert the WriteableBitmap to byte array

public static byte[] ToByteArray(this WriteableBitmap bmp)
{
   int[] p = bmp.Pixels;
   int len = p.Length * 4;
   byte[] result = new byte[len]; // ARGB
   Buffer.BlockCopy(p, 0, result, 0, len);
   return result;
}

taken from this blog http://kodierer.blogspot.com/2009/11/convert-encode-and-decode-silverlight.html

To upload it to a document library with the Client OM you can use this tutorial http://www.zimmergren.net/archive/2010/06/10/sp-2010-uploading-files-using-the-client-om-in-sharepoint-2010.aspx

link|improve this answer
feedback

If you're working with SharePoint 2010, you can use the client object model for Silverlight. It's very similar to the client object model for .net, except that it's asynchronous.

Here's an example

link|improve this answer
HI, thanks for the reply. I need to know how to convert the WriteableBitmap in to a byte array in order to be uploaded to a SharePoint doc. lib. – user318197 Aug 14 '11 at 11:21
Andreas Scharf just added an example on how to do that. – alfonso Aug 14 '11 at 13:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.