1/* 2 * Copyright (c) 2024 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16export interface CameraConfig { 17 mirrorBol: boolean, // 镜像使能 18 videoStabilizationMode: number, // 视频防抖 19 exposureMode: number, // 曝光模式 20 focusMode: number, // 对焦模式 21 photoQuality: number, // 拍照质量 22 locationBol: boolean, // 显示地理位置 23 hdrPhotoBol:boolean, // HDR 拍摄 24 photoFormat: number, // 照片格式 25 photoOrientation: number, // 照片方向 26 photoResolution: number, // 照片分辨率 27 videoResolution: number, // 照片分辨率 28 videoFrame: number, // 录像帧率 29 hdrVideoBol:boolean, // HDR 录制 30 referenceLineBol: boolean // 分割线 31}