第37讲 拍照打闪实战 - Android Camera2 API

本讲是Android Camera专题系列的第37讲,我们介绍Android Camera2 API专题的拍照打闪实战。

更多资源:

资源 描述
在线课程 极客笔记在线课程
知识星球 星球名称:深入浅出Android Camera
星球ID: 17296815
Wechat 极客笔记圈

GeekCamera2 设置不同的Flash模式

CameraController2#CameraSettings#setAEMode

switch(flash_value) {
    case "flash_off":
        builder.set(CaptureRequest.CONTROL_AE_MODE, CameraMetadata.CONTROL_AE_MODE_ON);
        builder.set(CaptureRequest.FLASH_MODE, CameraMetadata.FLASH_MODE_OFF);
        break;
    case "flash_auto":
        // note we set this even in fake flash mode (where we manually turn torch on and off to simulate flash) so we
        // can read the FLASH_REQUIRED state to determine if flash is required
    /*if( use_fake_precapture || CameraController2.this.want_expo_bracketing )
        builder.set(CaptureRequest.CONTROL_AE_MODE, CameraMetadata.CONTROL_AE_MODE_ON);
    else*/
        builder.set(CaptureRequest.CONTROL_AE_MODE, CameraMetadata.CONTROL_AE_MODE_ON_AUTO_FLASH);
        builder.set(CaptureRequest.FLASH_MODE, CameraMetadata.FLASH_MODE_OFF);
        break;
    case "flash_on":
        // see note above for "flash_auto" for why we set this even fake flash mode - arguably we don't need to know
        // about FLASH_REQUIRED in flash_on mode, but we set it for consistency...
    /*if( use_fake_precapture || CameraController2.this.want_expo_bracketing )
        builder.set(CaptureRequest.CONTROL_AE_MODE, CameraMetadata.CONTROL_AE_MODE_ON);
    else*/
        builder.set(CaptureRequest.CONTROL_AE_MODE, CameraMetadata.CONTROL_AE_MODE_ON_ALWAYS_FLASH);
        builder.set(CaptureRequest.FLASH_MODE, CameraMetadata.FLASH_MODE_OFF);
        break;
    case "flash_torch":
        builder.set(CaptureRequest.CONTROL_AE_MODE, CameraMetadata.CONTROL_AE_MODE_ON);
        builder.set(CaptureRequest.FLASH_MODE, CameraMetadata.FLASH_MODE_TORCH);
        break;
    case "flash_red_eye":
        // not supported for expo bracketing or burst
        if( CameraController2.this.burst_type != BurstType.BURSTTYPE_NONE )
            builder.set(CaptureRequest.CONTROL_AE_MODE, CameraMetadata.CONTROL_AE_MODE_ON);
        else
            builder.set(CaptureRequest.CONTROL_AE_MODE, CameraMetadata.CONTROL_AE_MODE_ON_AUTO_FLASH_REDEYE);
        builder.set(CaptureRequest.FLASH_MODE, CameraMetadata.FLASH_MODE_OFF);
        break;
    case "flash_frontscreen_auto":
    case "flash_frontscreen_on":
    case "flash_frontscreen_torch":
        builder.set(CaptureRequest.CONTROL_AE_MODE, CameraMetadata.CONTROL_AE_MODE_ON);
        builder.set(CaptureRequest.FLASH_MODE, CameraMetadata.FLASH_MODE_OFF);
        break;
}

GeekCamera2 拍照打闪流程

  1. 触发precapture

    CameraController2#runPrecapture

  2. 等待precapture完成

    CameraController2#handleStateChange

  3. 拍照

    CameraController2#takePictureAfterPrecapture

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程

Android Camera2 API