I want take pictures using black berry camera for my app, it is possible in v5.0 and yes then how?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes it is definitely possible, but not a very simple task if you don’t get some advice up front.
First and foremost, there is some sample code that is shipped with the Eclipse package at least (CameraDemo) that shows how to create a viewfiender using a Field, Player, and VideoScreen. The biggest issue is third party developers cannot overlay anything on top of the view finder (which is the what they’ll call the Field after you set it as such with a VideoControl.
Also, you are very limited to what size you can set the Field — I only got half size and fullscreen working, some dimensions got ignored and others caused it to not be displayed at all.
Here is some code that shows this:
After you do this you can use
to snap the picture. To determine what sizeAndEncodingParameters your device supports, you can use
System.getProperty("video.snapshot.encodings");which will return aString[]that you can iterate over to determine what to use.