Windows Phone - SavePicture - InvalidOperationException
为什么无论我是否连接到 PC,这段代码都会抛出 InvalidOperationException?
MemoryStream ms = new MemoryStream();
picture.SaveAsJpeg(ms, 480, 800);
ms.Seek(0, SeekOrigin.Begin);
MediaLibrary l = new MediaLibrary();
l.SavePicture("test11", ms);
l.Dispose();
ms.Dispose();
我使用 WP7 RC 工具和 XNA 图片是一个Texture2D实例
Why this code throws InvalidOperationException no metter if I am conncted to PC or not?
MemoryStream ms = new MemoryStream();
picture.SaveAsJpeg(ms, 480, 800);
ms.Seek(0, SeekOrigin.Begin);
MediaLibrary l = new MediaLibrary();
l.SavePicture("test11", ms);
l.Dispose();
ms.Dispose();
I use WP7 RC Tools and XNA
picture is an Texture2D instance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
刚刚解决了问题。
我忘了我玩过权限(清单文件),不小心删除了这个权限
Just solved the problem.
I forgot I've played with permissions (manifest file), and accidentaly deleted this permission
在这里找到这个示例:如何:编码 JPEG对于Windows Phone并保存到图片库
希望它有帮助,它首先将流保存在IsolatedStorage中,然后从那里加载并最后保存在MediaLibrary中...
found this example here: How to: Encode a JPEG for Windows Phone and Save to the Pictures Library
hopefully it helps, it is saving the stream in the IsolatedStorage first then loading from there and saving in the MediaLibrary in the end...
如果您已连接到 PC,则无法使用 MediaLibrary。而是使用 WPConnect.exe 连接,
有关如何连接的详细信息,请参阅此答案:使用设备进行调试时无法启动 CameraCaptureTask 或 PhotoChooserTask
If you're connected to the PC, you can't use the MediaLibrary. Instead connect with WPConnect.exe
See this answer for details on how: Unable to launch CameraCaptureTask or PhotoChooserTask while debugging with device