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();
}

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.

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.

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.
Reference: http://www.kunal-chowdhury.com
You may like to follow me on twitter
@kunal2383 or may like the Facebook page of my blog
http://www.facebook.com/blog.kunal2383
Kunal Chowdhury is a Microsoft MVP (Most Valuable Professional) in Silverlight Technology, a Codeproject MVP & Mentor, DZone MVB (Most Valuable Blogger), Speaker in various Microsoft events, Author, passionate Blogger and a Software Engineer by profession.
He is currently working as a Software Engineer II in an MNC located at Pune, India. He has a very good skill over XAML, C#, Silverlight and WPF. He has a good working experience in Windows 7 application (including Multi-touch) development too.
He posts his findings in his technical blog. He also writes for SilverlightShow and Codeproject portal. Many of his articles were highlighted as "Article of the Day" in Microsoft sites.
He also has another website called Silverlight-Zone.com where he posts article links on Silverlight, Windows Phone 7 and XNA accumulated from various web sites to help the community grow on specified technologies.
You can reach him in his Blog : http://www.kunal-chowdhury.com
He is also available in Twitter : http://twitter.com/kunal2383