Sometime in our application, we want to launch the Media Library of the Windows Phone 7 device and also want to provide user the option to view any existing image from that library. So if you want to do this, how will you implement the code?

 

Windows Phone 7 SDK provides provides API to do this. Using the PhotoChooserTask you can actually launch the photo chooser application and handle the selected image. Continue reading to read more about this process from this small tips.

 

Know About the API

PhotoChooserTask is a sealed class present in the Microsoft.Phone.Tasks namespace which allows user to launch the Media library and select any existing image from there. The class consists of few properties, one method and one event. Here is the meta data of the class:

 
public sealed class PhotoChooserTask : ChooserBase<PhotoResult>
{
    public int PixelHeight { get; set; }
    public int PixelWidth { get; set; }
    public bool ShowCamera { get; set; }
 
    [SecuritySafeCritical]
    public override void Show();
}

 

Public property
PixelHeight
Gets or sets the maximum height and the height component of the aspect ratio for a cropping region set by the user during the photo choosing process.

 

Public property
PixelWidth
Gets or sets the maximum width and the width component of the aspect ratio for a cropping region set by the user during the photo choosing process.

 

Public property
ShowCamera
Gets or sets whether the user is presented with a button for launching the camera during the photo choosing process.

 

Show()
The Show() method actually Shows the Photo Chooser application.

 

Practical Implementation

If you want to integrate this in your application, create the instance of the PhotoChooserTask and call the Show() method. If you want to handle the user’s selection, register the Completed event which will give you handle of the chosen photo.

 

Here is the code snippet which will allow user to chose photo from the Media Library:

 
var photoChooserTask = new PhotoChooserTask();
photoChooserTask.Completed += PhotoChooserTaskCompleted;
photoChooserTask.Show();

 

In the completed event implementation, you can get the chosen image as PhotoResult and set the image to your Image control or can use it in other places.

 

Here is the code snippet of the implementation:

 
void PhotoChooserTaskCompleted(object sender, PhotoResult e)
{
    switch (e.TaskResult)
    {
        case TaskResult.OK:
            imageChooser.Source = new BitmapImage(new Uri(e.OriginalFileName));
            break;
    }
}

 

In the PhotoResult you can get the original file name with complete path and also a stream of the chosen photo. You can use any one of them. Hope this small post was helpful and now you will be able to use this in your Windows Phone 7 application.

 

Stay tuned to my blog, twitter or facebook to read more articles, tutorials, news, tips & tricks on various technology fields.

Have a question? Or, a comment? Let's Discuss it below...

dhgate

Thank you for visiting our website!

We value your engagement and would love to hear your thoughts. Don't forget to leave a comment below to share your feedback, opinions, or questions.

We believe in fostering an interactive and inclusive community, and your comments play a crucial role in creating that environment.