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

发布于 2024-11-29 10:37:24 字数 71 浏览 0 评论 0 原文

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

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁月如刀 2024-12-06 10:37:24

下面是一个将 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

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

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

嗫嚅 2024-12-06 10:37:24

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

这是一个示例

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文