ImageCapture.Builder
public final class ImageCapture.Builder implements ExtendableBuilder
Builder for an ImageCapture.
Summary
Public constructors |
|---|
Builder()Creates a new Builder object. |
Public methods |
|
|---|---|
@NonNull ImageCapture |
build()Builds an immutable |
@NonNull ImageCapture.Builder |
setCaptureMode(int captureMode)Sets the image capture mode. |
@NonNull ImageCapture.Builder |
setFlashMode(int flashMode)Sets the flashMode. |
@NonNull ImageCapture.Builder |
setIoExecutor(@NonNull Executor executor)Sets the default executor that will be used for IO tasks. |
@NonNull ImageCapture.Builder |
setJpegQuality(@IntRange(from = 1, to = 100) int jpegQuality)Sets the output JPEG image compression quality. |
@NonNull ImageCapture.Builder |
setOutputFormat(int outputFormat)Sets the output format of the captured image. |
@NonNull ImageCapture.Builder |
setPostviewEnabled(boolean postviewEnabled)Enables postview image generation. |
@NonNull ImageCapture.Builder |
setPostviewResolutionSelector(Set the |
@NonNull ImageCapture.Builder |
setResolutionSelector(@NonNull ResolutionSelector resolutionSelector)Sets the resolution selector to select the preferred supported resolution. |
@NonNull ImageCapture.Builder |
setScreenFlash(@NonNull ImageCapture.ScreenFlash screenFlash)Sets the |
@NonNull ImageCapture.Builder |
This method is deprecated. use |
@NonNull ImageCapture.Builder |
setTargetName(@NonNull String targetName)Sets the name of the target object being configured, used only for debug logging. |
@NonNull ImageCapture.Builder |
This method is deprecated. use |
@NonNull ImageCapture.Builder |
setTargetRotation(int rotation)Sets the rotation of the intended target for images from this configuration. |
Public methods
build
public @NonNull ImageCapture build()
Builds an immutable ImageCapture from the current state.
| Returns | |
|---|---|
@NonNull ImageCapture |
A |
| Throws | |
|---|---|
java.lang.IllegalArgumentException |
if attempting to set both target aspect ratio and target resolution, or attempting to set |
setCaptureMode
public @NonNull ImageCapture.Builder setCaptureMode(int captureMode)
Sets the image capture mode.
Valid capture modes are CAPTURE_MODE_MINIMIZE_LATENCY, which prioritizes latency over image quality, or CAPTURE_MODE_MAXIMIZE_QUALITY, which prioritizes image quality over latency.
If not set, the capture mode will default to CAPTURE_MODE_MINIMIZE_LATENCY.
| Parameters | |
|---|---|
int captureMode |
The requested image capture mode. |
| Returns | |
|---|---|
@NonNull ImageCapture.Builder |
The current Builder. |
setFlashMode
public @NonNull ImageCapture.Builder setFlashMode(int flashMode)
Sets the flashMode.
If not set, the flash mode will default to FLASH_MODE_OFF.
If set to FLASH_MODE_SCREEN, a non-null ScreenFlash instance must also be set with setScreenFlash. Otherwise, an IllegalArgumentException will be thrown when build is invoked.
See setFlashMode for more information.
| Parameters | |
|---|---|
int flashMode |
The requested flash mode. Value is |
| Returns | |
|---|---|
@NonNull ImageCapture.Builder |
The current Builder. |
setIoExecutor
public @NonNull ImageCapture.Builder setIoExecutor(@NonNull Executor executor)
Sets the default executor that will be used for IO tasks.
This executor will be used for any IO tasks specifically for ImageCapture, such as takePicture. If no executor is set, then a default Executor specifically for IO will be used instead.
| Returns | |
|---|---|
@NonNull ImageCapture.Builder |
the current Builder. |
setJpegQuality
public @NonNull ImageCapture.Builder setJpegQuality(@IntRange(from = 1, to = 100) int jpegQuality)
Sets the output JPEG image compression quality.
This is used for the ImageProxy which is returned by takePicture or the output JPEG image which is saved by takePicture. The saved JPEG image might be cropped according to the ViewPort setting or the crop aspect ratio set by setCropAspectRatio. The JPEG quality setting will also be used to compress the cropped output image.
If not set, a default value will be used according to the capture mode setting. JPEG compression quality 95 is used for CAPTURE_MODE_MINIMIZE_LATENCY and 100 is used for CAPTURE_MODE_MAXIMIZE_QUALITY.
| Parameters | |
|---|---|
@IntRange(from = 1, to = 100) int jpegQuality |
The requested output JPEG image compression quality. The value must be in range [1..100] which larger is higher quality. |
| Returns | |
|---|---|
@NonNull ImageCapture.Builder |
The current Builder. |
| Throws | |
|---|---|
java.lang.IllegalArgumentException |
if the input value is not in range [1..100]. |
setOutputFormat
public @NonNull ImageCapture.Builder setOutputFormat(int outputFormat)
Sets the output format of the captured image.
The supported output formats for capturing image depend on the capabilities of the camera. The supported output formats of the camera can be queried using getSupportedOutputFormats.
If not set, the output format will default to OUTPUT_FORMAT_JPEG.
An IllegalArgumentException will be thrown when binding the UseCase if the specified output format is not supported. Please note that the supported output formats might be changed when Extensions is enabled.
| Parameters | |
|---|---|
int outputFormat |
The output image format. Value is |
| Returns | |
|---|---|
@NonNull ImageCapture.Builder |
The current Builder. |
setPostviewEnabled
public @NonNull ImageCapture.Builder setPostviewEnabled(boolean postviewEnabled)
Enables postview image generation. A postview image is a low-quality image that's produced earlier during image capture than the final high-quality image, and can be used as a thumbnail or placeholder until the final image is ready.
When the postview is available, onPostviewBitmapAvailable or onPostviewBitmapAvailable will be called.
By default the largest available postview size that is smaller or equal to the ImagaeCapture size will be used to configure the postview. The ResolutionSelector can also be used to select a specific size via setPostviewResolutionSelector.
You can query the postview capability by invoking getImageCaptureCapabilities. If isPostviewSupported returns false and you still enable the postview, the postview image won't be generated.
| Parameters | |
|---|---|
boolean postviewEnabled |
whether postview is enabled or not |
| Returns | |
|---|---|
@NonNull ImageCapture.Builder |
the current Builder. |
setPostviewResolutionSelector
public @NonNull ImageCapture.Builder setPostviewResolutionSelector(
@NonNull ResolutionSelector resolutionSelector
)
Set the ResolutionSelector to select the postview size from the available postview sizes. These available postview sizes are smaller or equal to the ImageCapture size. You can implement the androidx.camera.core.resolutionselector.ResolutionFilter and set it to the ResolutionSelector to get the list of available sizes and determine which size to use.
If no sizes can be selected using the given ResolutionSelector, it will throw an IllegalArgumentException when bindToLifecycle() is invoked.
| Returns | |
|---|---|
@NonNull ImageCapture.Builder |
the current Builder. |
setResolutionSelector
public @NonNull ImageCapture.Builder setResolutionSelector(@NonNull ResolutionSelector resolutionSelector)
Sets the resolution selector to select the preferred supported resolution.
The default resolution strategy for ImageCapture is HIGHEST_AVAILABLE_STRATEGY, which will select the largest available resolution to use. Applications can override this default strategy with a different resolution strategy.
The existing setTargetResolution and setTargetAspectRatio APIs are deprecated and are not compatible with setResolutionSelector. Calling either of these APIs together with setResolutionSelector will result in an IllegalArgumentException being thrown when you attempt to build the ImageCapture instance.
| Returns | |
|---|---|
@NonNull ImageCapture.Builder |
The current Builder. |
setScreenFlash
public @NonNull ImageCapture.Builder setScreenFlash(@NonNull ImageCapture.ScreenFlash screenFlash)
Sets the ScreenFlash instance necessary for screen flash operations.
If not set, the instance will be set to null and users will need to set it later before calling setFlashMode with FLASH_MODE_SCREEN.
See setScreenFlash for more information.
| Parameters | |
|---|---|
@NonNull ImageCapture.ScreenFlash screenFlash |
The |
| Returns | |
|---|---|
@NonNull ImageCapture.Builder |
The current Builder. |
public @NonNull ImageCapture.BuildersetTargetAspectRatio(int aspectRatio)
Sets the aspect ratio of the intended target for images from this configuration.
The aspect ratio is the ratio of width to height in the sensor orientation.
It is not allowed to set both target aspect ratio and target resolution on the same use case. Attempting so will throw an IllegalArgumentException when building the Config.
The target aspect ratio is used as a hint when determining the resulting output aspect ratio which may differ from the request, possibly due to device constraints. Application code should check the resulting output's resolution and the resulting aspect ratio may not be exactly as requested.
If not set, or RATIO_DEFAULT is supplied, resolutions with aspect ratio 4:3 will be considered in higher priority.
| Parameters | |
|---|---|
int aspectRatio |
The desired ImageCapture |
| Returns | |
|---|---|
@NonNull ImageCapture.Builder |
The current Builder. |
setTargetName
public @NonNull ImageCapture.Builder setTargetName(@NonNull String targetName)
Sets the name of the target object being configured, used only for debug logging.
The name should be a value that can uniquely identify an instance of the object being configured.
If not set, the target name will default to a unique name automatically generated with the class canonical name and random UUID.
| Parameters | |
|---|---|
@NonNull String targetName |
A unique string identifier for the instance of the class being configured. |
| Returns | |
|---|---|
@NonNull ImageCapture.Builder |
the current Builder. |
public @NonNull ImageCapture.BuildersetTargetResolution(@NonNull Size resolution)
Sets the intended output target resolution.
The target resolution attempts to establish a minimum bound for the image resolution. The actual image resolution will be the closest available resolution in size that is not smaller than the target resolution, as determined by the Camera implementation. However, if no resolution exists that is equal to or larger than the target resolution, the nearest available resolution smaller than the target resolution will be chosen. Resolutions with the same aspect ratio of the provided Size will be considered in higher priority before resolutions of different aspect ratios.
It is not allowed to set both target aspect ratio and target resolution on the same use case. Attempting so will throw an IllegalArgumentException when building the Config.
The resolution Size should be expressed in the coordinate frame after rotating the supported sizes by the target rotation. For example, a device with portrait natural orientation in natural target rotation requesting a portrait image may specify 480x640, and the same device, rotated 90 degrees and targeting landscape orientation may specify 640x480.
When the target resolution is set, setCropAspectRatio will be automatically called to set corresponding value. Such that the output image will be cropped into the desired aspect ratio.
The maximum available resolution that could be selected for an ImageCapture will depend on the camera device's capability.
If not set, the largest available resolution will be selected to use. Usually, users will intend to get the largest still image that the camera device can support.
When using the camera-camera2 CameraX implementation, which resolution will be finally selected will depend on the camera device's hardware level and the bound use cases combination. For more details see the guaranteed supported configurations tables in android.hardware.camera2.CameraDevice's href="https://developer.android.com/reference/android/hardware/camera2/CameraDevice #regular-capture">Regular capture section.
| Parameters | |
|---|---|
@NonNull Size resolution |
The target resolution to choose from supported output sizes list. |
| Returns | |
|---|---|
@NonNull ImageCapture.Builder |
The current Builder. |
setTargetRotation
public @NonNull ImageCapture.Builder setTargetRotation(int rotation)
Sets the rotation of the intended target for images from this configuration.
This will affect the EXIF rotation metadata in images saved by takePicture calls and the getRotationDegrees value of the ImageProxy returned by OnImageCapturedCallback. These will be set to be the rotation, which if applied to the output image data, will make the image match the target rotation specified here.
This is one of four valid values: ROTATION_0, ROTATION_90, ROTATION_180, ROTATION_270. Rotation values are relative to the "natural" rotation, ROTATION_0.
In general, it is best to additionally set the target rotation dynamically on the use case. See setTargetRotation for additional documentation.
If not set, the target rotation will default to the value of getRotation of the default display at the time the use case is created. The use case is fully created once it has been attached to a camera.
| Parameters | |
|---|---|
int rotation |
The rotation of the intended target. |
| Returns | |
|---|---|
@NonNull ImageCapture.Builder |
The current Builder. |