HomeWindowsUsing the CameraCaptureTask in Windows Phone 7

Using the CameraCaptureTask in Windows Phone 7

The CameraCaptureTask allows the Windows Phone 7 App to launch the Camera Application .

This will be useful when the user wants to take a photo from the App and then do something useful with the Photo like saving the photo that was taken etc .

This blog post discusses how to use the CameraCaptureTask and display the photo that was taken on to the Image Control in Windows Phone 7 .

The CameraCaptureTask is defined in the namespace Microsoft.Phone.Tasks .

Using Microsoft.Phone.Tasks;
private void button1_Click(object sender, RoutedEventArgs e)
{
     CameraCaptureTask cameraCapture = new CameraCaptureTask();
     cameraCapture.Completed += new EventHandler<PhotoResult>(cameraCapture_Completed);
     cameraCapture.Show();

}

void cameraCapture_Completed(object sender, PhotoResult e)
{
     if (e.TaskResult == TaskResult.OK)
     {
        BitmapImage bitImage = new BitmapImage();
        bitImage.SetSource(e.ChosenPhoto);
        //image is a Image Control in the form
        image1.Source = bitImage;

}
}

When the photo is captured via Camera and Accepted , it can be accessed through the ChosenPhoto of the PhotoResult .

In the above example , the photo is displayed on the Image Control .

Leave a Reply

You May Also Like

This blog post will guide you through several effective methods to troubleshoot and resolve the issue of Microsoft Edge not...
Windows 11 offers a range of audio enhancements that can enrich your listening experience. These enhancements include features like virtual...
Windows 11 brings a fresh and visually stunning design to your desktop, and one of the standout features is the...