Is there any other way to access the photos stored on a WP7 device other than the PhotoChooserTask?
If you add a reference to Microsoft.Xna.Framework.dll
(yes, even in a Silverlight app) you can access the PicturesCollection.
var ml = new Microsoft.Xna.Framework.Media.MediaLibrary();
using (var pics = ml.Pictures)
{
foreach (var picture in pics)
{
// voila! access to the pictures on the phone
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With