Take a photo.
#include <camera/camera_api.h>
camera_error_t camera_take_photo(camera_handle_t handle,
void(*shutter_callback)(camera_handle_t,
void *),
void(*raw_callback)(camera_handle_t,
camera_buffer_t *,
void *),
void(*postview_callback)(camera_handle_t,
camera_buffer_t *,
void *),
void(*image_callback)(camera_handle_t,
camera_buffer_t *,
void *),
void *arg,
bool wait)
BlackBerry 10.0.0
The handle returned by a call to the camera_open() function.
void function_name( camera_handle_t, void* );The function is a callback that is invoked when the shutter activates. Typically, the callback function plays a shutter sound. You can use NULL if no function needs to be called. For information about the callback arguments, see About callback mode.
Use NULL. Reserved for future use.
void function_name( camera_handle_t, camera_buffer_t*, void* );The function is a callback that is invoked when the post-view (review) image data is available. This callback is used to provide a preview-sized copy of the photo. Typically, the preview-sized photo is used to provide visual feedback by the UI before the final image is available. You can use NULL if no function needs to be called. For information about the callback arguments, see About callback mode.
void function_name( camera_handle_t, camera_buffer_t*, void* );The function is a callback that is invoked when the final image, such as a JPEG, is available. You can use camera_set_photo_property() to change the CAMERA_IMGPROP_FORMAT to another format other than CAMERA_FRAMETYPE_JPEG. You can use NULL if no function needs to be called. For information about the callback arguments, see About callback mode.
The argument passed to all callback functions, which is the last argument in the callback functions.
A boolean value that indicates whether the function blocks or not. If the value is set to true, this function is blocking and will return once all specified callbacks have returned. If the value is set to false, this function call is non-blocking and returns before all specified callbacks have returned.
Before you take a photo, ensure that you have configured the viewfinder, set the output properties for the photo, and started the viewfinder. This function can only be called if the CAMERA_FEATURE_PHOTO feature is available. You can determine whether this feature is available by calling the camera_can_feature() function. Callbacks that are invoked by this function are called only once.
The viewfinder must be started in a viewfinder mode that supports photo capture. For more information about viewfinder modes, see Viewfinder modes.
If you want an application to save the photo to a file, then this function should be invoked with the image_callback argument set. When the image_callback is set, the image buffer is provided as the second argument to the callback function. Then, when your image_callback function is invoked, you can save the buffer to a file.
A CAMERA_STATUS_CAPTURECOMPLETE status event is emitted once the photo capture is completed.
For example, it is illegal to mute or modify the shutter sound of a camera application in Japan and Korea. Ensure that you comply with the laws and regulations for the countries in which you distribute your application. For more information, see the BlackBerry World Vetting Criteria at https://appworld.blackberry.com/isvportal/home.do.
CAMERA_EOK when the function successfully completes, otherwise another camera_error_t value that provides the reason that the call failed.