Reputation: 1970
I have found good examples on how to call the native Android camera app using an intent, and I know you can set the app to take black and white photos using the UI, but I couldn't find a way to take a BW photo using the intent. Is there a way?
Upvotes: 2
Views: 2516
Reputation: 2478
You might want to check on the Camera class that is provided in case you need more precise control over the way a picture is taken. If you're interested in color effects, there are some "pre-defined" color effects that can be found in the Camera.Parameters class. Hope you find your way now :-)
Upvotes: 1