I'm creating an application for WP7 where the background of it (a grid) receives the image from the camera. Here is how it works:

XAML:

<Grid x:Name="ContentPanel" Grid.Row="1">
        <Grid.Background>
            <VideoBrush x:Name="video" />
        </Grid.Background>
</Grid>

C#:

Microsoft.Devices.PhotoCamera m_camera;

// Constructor
public MainPage()
{
InitializeComponent();

Loaded += (s, e) =>
    {
        m_camera = new Microsoft.Devices.PhotoCamera();
        video.SetSource(m_camera);
    };
}

My question: Is there a way to access the zoom options of the camera with this? Or can I define the source as the camera totally zoomed in or out?

link|improve this question

1  
@abhinav That should be an answer. – loyalpenguin Nov 10 '11 at 22:55
@loyalpenguin Thanks. Added. – abhinav Nov 11 '11 at 3:26
feedback

1 Answer

up vote 1 down vote accepted

Unfortunately, no. You can manipulate a higher resolution image to fill the background with only the part that you'd like to zoom in on. See resolution example here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.