将 WriteableBitmap 作为图像保存到 SharePoint 文档库
我有一个要求,必须将生成的 WriteableBitmap 作为图像上传到 SharePoint 文档库。有人可以帮我吗?谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一个要求,必须将生成的 WriteableBitmap 作为图像上传到 SharePoint 文档库。有人可以帮我吗?谢谢。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
下面是一个将 WriteableBitmap 转换为字节数组的扩展方法,
取自此博客 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
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
如果您使用的是 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