将WriteableBitmap作为图像保存到SharePoint文档库

时间:2011-08-13 17:22:14

标签: silverlight sharepoint document writeablebitmap

我有一个要求,我必须将作为图像生成的WriteableBitmap上传到SharePoint文档库。谁能帮帮我吗 ?谢谢。

2 个答案:

答案 0 :(得分:1)

这是一个将WriteableBitmap转换为字节数组的扩展方法

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;
}

取自此博客http://kodierer.blogspot.com/2009/11/convert-encode-and-decode-silverlight.html

要使用Client OM将其上传到文档库,您可以使用本教程http://www.zimmergren.net/archive/2010/06/10/sp-2010-uploading-files-using-the-client-om-in-sharepoint-2010.aspx

答案 1 :(得分:0)

如果您使用的是SharePoint 2010,则可以使用Silverlight的客户端对象模型。它与.net的客户端对象模型非常相似,只是它是异步的。

Here's an example