Accessing Pictures from Media Library in Windows Phone

You may come across a requirement to access the entire picture saved in Media Library of Windows Phone. Media Library can be access using MediaLibrary class.

To work with MediaLibrary class you need to add reference of Microsoft.Xna.Framework. This class is defined in namespace Microsoft.Xna.Framework.Media namespace.

To work with MediaLibrary, you need to make instance of MediaLibrary class as below,

image

Pictures property of MediaLibrary class returns all the images as Picture. You can iterate to all images as below,

image

Image can be fetch as stream inside foreach look as below,

image

You can create Image from returend stream as below.

image

Eventually you can set imageToShow as source of Image control. For your reference below code will add all the pictures from Media Library in a listbox called lstImageFromMediaLibrary


MediaLibrary m = new MediaLibrary();

foreach (var r in m.Pictures)
{
Stream imageStream = r.GetImage();

var imageToShow = new Image()
{
Source = PictureDecoder.DecodeJpeg(r.GetImage())
};

lstImageFromMediaLibrary.Items.Add(imageToShow);
}
}


You can access Media Library on emulator only in debugmode. In this way you can access all the images from Media library. I hope this post is useful. Thanks for reading.

 

2 responses to “Accessing Pictures from Media Library in Windows Phone”

  1. […] Accessing Pictures from Media Library in Windows Phone […]

  2. […] Accessing Pictures from Media Library in Windows Phone […]

Leave a comment

Create a website or blog at WordPress.com