0

我有一个带有名为 Photo 的变量的类。用户正在使用 PhotoChooserTask 选择照片,并显示在 Image 控件中。应用程序的这一部分,选择器和显示,工作正常。

我想保存所选照片的​​位置/路径或实际照片,以便在用户稍后运行应用程序时可以将其显示到 Image 控件中。整个类是使用序列化保存的,我不知道如何以这种方式保存/序列化照片(或照片路径)。

用户也应该可以通过相机胶卷使用该照片。

任何帮助、链接或代码,将不胜感激。

4

1 回答 1

0

If you're using a PhotoChooserTask you will will get a PhotoResult instance from the PhotoChooserTask.Completed event.

You can then PhotoResult.ChosenPhoto stream and save the content to a byte array (easy serialization) or a file in Isolated Storage.

于 2013-04-24T08:38:21.593 回答