Reputation: 13092
I'm creating an app where I make use of WP7 Mango's camera APIs. In the app I need to take pictures at different focal points, is there any possibility that I can set camera focus points programmatically?
Upvotes: 4
Views: 779
Reputation: 4870
You need that method
PhotoCamera.FocusAtPoint(double x, double y);
http://msdn.microsoft.com/en-us/library/microsoft.devices.photocamera.focusatpoint(v=VS.92).aspx
Upvotes: 6