【HarmonyOS NEXT】鸿蒙customScan (自定义界面扫码)

起始版本:4.1.0(11)

导入模块

import { customScan } from '@kit.ScanKit';

ViewControl

相机控制参数。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:4.1.0(11)

名称

类型

只读

可选

说明

width

number

XComponent组件的宽,默认使用单位为vp,支持px、lpx和vp。

height

number

XComponent组件的高,默认使用单位为vp,支持px、lpx和vp。

surfaceId

string

XComponent持有surface的ID。

说明

  1. ViewControl的width和height需和XComponent的保持一致,start接口根据设置宽高值会匹配最接近相机分辨率,当未匹配到合适分辨率,接口会返回1000500001内部错误。XComponent组件为预览流提供的Surface,而XComponent的能力由UI提供,相关介绍可参见XComponent。
  2. 当开发设备为折叠屏时,折叠态切换时需自行调整XComponent的宽高,start接口会重新适配相机分辨率比例。

示例:

import { hilog } from '@kit.PerformanceAnalysisKit';
import { BusinessError } from '@kit.BasicServicesKit';
import { scanBarcode, customScan } from '@kit.ScanKit';@Entry
@Component
struct customScanPage {// 设置预览流高度,默认单位:vp@State cameraHeight: number = 640;// 设置预览流宽度,默认单位:vp@State cameraWidth: number = 360;private mXComponentController: XComponentController = new XComponentController();build() {Stack() {XComponent({id: 'componentId',type: 'surface',controller: this.mXComponentController}).onLoad(() => {hilog.info(0x0001, '[Scan Sample]', 'onLoad is called')// 获取XComponent的surfaceIdlet surfaceId: string = this.mXComponentController.getXComponentSurfaceId();hilog.info(0x0001, 'viewControl', `onLoad surfaceId: ${surfaceId}`);// 设置ViewControl相应字段let viewControl: customScan.ViewControl = {width: this.cameraWidth,height: this.cameraHeight,surfaceId: surfaceId};customScan.start(viewControl).then((scanResult: Array<scanBarcode.ScanResult>) => {hilog.info(0x0001, '[Scan Sample]', `Succeeded in getting ScanResult by promise, scanResult is ${JSON.stringify(scanResult)}`);}).catch((error: BusinessError) => {hilog.error(0x0001, '[Scan Sample]',`Failed to get ScanResult by promise. Code: ${error.code}, message: ${error.message}`);})})// 预览流宽、高,默认单位vp,支持px、lpx、vp.height(this.cameraHeight).width(this.cameraWidth).position({ x: 0, y: 0 })}.alignContent(Alignment.Bottom).height('100%').width('100%').position({ x: 0, y: 0 })}
}

ScanFrame

相机预览流(YUV)。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:5.0.0(12)

名称

类型

只读

可选

说明

byteBuffer

ArrayBuffer

相机预览流的ArrayBuffer数组。

width

number

相机预览流的宽度,单位:px。

height

number

相机预览流的高度,单位:px。

scanCodeRects

Array<scanBarcode.ScanCodeRect>

相机预览流的码图检测位置信息。

示例:

import { hilog } from '@kit.PerformanceAnalysisKit';
import { AsyncCallback, BusinessError } from '@kit.BasicServicesKit';
import { scanBarcode, customScan } from '@kit.ScanKit';const TAG = '[ScanKit ScanFrame]';@Entry
@Component
struct customScanPage {// 设置预览流高度,默认单位:vp@State cameraHeight: number = 640;// 设置预览流宽度,默认单位:vp@State cameraWidth: number = 360;private mXComponentController: XComponentController = new XComponentController();private callback: AsyncCallback<scanBarcode.ScanResult[]> =async (error: BusinessError, result: scanBarcode.ScanResult[]) => {if (error) {hilog.error(0x0001, '[Scan Sample]', `Failed to get ScanResult by callback. Code: ${error.code}, message: ${error.message}`);return;}hilog.info(0x0001, '[Scan Sample]', `Succeeded in getting ScanResult by callback, result is ${JSON.stringify(result)}`);}// 回调获取ScanFrameprivate frameCallback: AsyncCallback<customScan.ScanFrame> =async (error: BusinessError, frameResult: customScan.ScanFrame) => {if (error) {hilog.error(0x0001, '[Scan Sample]', `Failed to get ScanFrame by callback. Code: ${error.code}, message: ${error.message}`);return;}// byteBuffer相机YUV图像数组hilog.info(0x0001, '[Scan Sample]', `Succeeded in getting ScanFrame.byteBuffer.byteLength:  ${frameResult.byteBuffer.byteLength}`);hilog.info(0x0001, '[Scan Sample]', `Succeeded in getting ScanFrame.scanCodeRect: ${JSON.stringify(frameResult.scanCodeRects)}`);}build() {Stack() {XComponent({id: 'componentId',type: 'surface',controller: this.mXComponentController}).onLoad(() => {hilog.info(0x0001, '[Scan Sample]', 'Succeeded in loading, onLoad is called.');// 获取XComponent的surfaceIdlet surfaceId: string = this.mXComponentController.getXComponentSurfaceId();hilog.info(0x0001, '[Scan Sample]', `Succeeded ing getting surfaceId: ${surfaceId}`);// 设置ViewControl相应字段let viewControl: customScan.ViewControl = {width: this.cameraWidth,height: this.cameraHeight,surfaceId: surfaceId};customScan.start(viewControl, this.callback, this.frameCallback);})// 预览流宽、高,默认单位vp,支持px、lpx、vp.height(this.cameraHeight).width(this.cameraWidth).position({ x: 0, y: 0 })}.alignContent(Alignment.Bottom).height('100%').width('100%').position({ x: 0, y: 0 })}
}

说明

  1. scanCodeRects返回为横向预览流中的码图位置信息,需要将位置转换为纵向坐标系,数组中每一个元素left\top\right\bottom参数转换逻辑,以scanCodeRects第一个元素为例:
    // start接口frameCallback回调返回frameResult数据
    let rect:scanBarcode.ScanCodeRect = frameResult.scanCodeRects[0];
    // 预览流尺寸转换为显示组件Xcomponent尺寸比例
    let ratio = this.scanWidth / frameResult.height;
    left = (frameResult.height - rect.bottom) * ratio;
    top = rect.left * ratio;
    right = (frameResult.height - rect.top) * ratio;
    bottom = rect.right * ratio;

  2. 对应的二维码区域位置可以使用固定定位position({x: left, y: top}),宽度width: right - left,高度height: bottom - top,画出二维码实际区域范围。

customScan.init

init(options?: scanBarcode.ScanOptions): void

初始化自定义界面扫码。

需要权限:ohos.permission.CAMERA

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:4.1.0(11)

参数:

参数名

类型

必填

说明

options

scanBarcode.ScanOptions

自定义界面扫码参数。

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

401

Parameter error.

1000500001

Internal error.

示例:

import { scanBarcode, scanCore, customScan } from '@kit.ScanKit';let options: scanBarcode.ScanOptions = {scanTypes: [scanCore.ScanType.ALL],enableMultiMode: true,enableAlbum: true
};
customScan.init(options);

customScan.start

start(viewControl: ViewControl): Promise<Array<scanBarcode.ScanResult>>

启动扫码相机流,使用Promise异步回调获取扫码结果。

说明

此接口需要在init接口调用后才能使用。

需要权限:ohos.permission.CAMERA

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:4.1.0(11)

参数:

参数名

类型

必填

说明

viewControl

ViewControl

相机控制参数。

返回值:

类型

说明

Promise<Array<scanBarcode.ScanResult>>

Promise对象,返回启动相机流扫码结果对象。

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

401

Parameter error.

1000500001

Internal error.

示例:

import { hilog } from '@kit.PerformanceAnalysisKit';
import { BusinessError } from '@kit.BasicServicesKit';
import { scanBarcode, customScan } from '@kit.ScanKit';@Entry
@Component
struct customScanPage {// 设置预览流高度,默认单位:vp@State cameraHeight: number = 640// 设置预览流宽度,默认单位:vp@State cameraWidth: number = 360private mXComponentController: XComponentController = new XComponentController();build() {Stack() {XComponent({id: 'componentId',type: 'surface',controller: this.mXComponentController}).onLoad(() => {hilog.info(0x0001, '[Scan Sample]', 'Succeeded in loading, onLoad is called.');// 获取XComponent的surfaceIdlet surfaceId: string = this.mXComponentController.getXComponentSurfaceId();hilog.info(0x0001, '[Scan Sample]', `Succeeded in getting surfaceId: ${surfaceId}`);// 设置ViewControl相应字段let viewControl: customScan.ViewControl = {width: this.cameraWidth,height: this.cameraHeight,surfaceId: surfaceId};customScan.start(viewControl).then((scanResult: Array<scanBarcode.ScanResult>) => {hilog.info(0x0001, '[Scan Sample]', `Succeeded in getting ScanResult by promise, scanResult is ${JSON.stringify(scanResult)}`);}).catch((error: BusinessError) => {hilog.error(0x0001, '[Scan Sample]', `Failed to get ScanResult by promise. Code: ${error.code}, message: ${error.message}`);});})// 预览流宽、高,默认单位vp,支持px、lpx、vp.height(this.cameraHeight).width(this.cameraWidth).position({ x: 0, y: 0 })}.alignContent(Alignment.Bottom).height('100%').width('100%').position({ x: 0, y: 0 })}
}

customScan.start

start(viewControl: ViewControl, callback: AsyncCallback<Array<scanBarcode.ScanResult>>, frameCallback? :AsyncCallback<ScanFrame>): void

启动扫码相机流,使用Callback异步回调获取扫码结果、相机预览流(YUV-图像格式NV21基于4:2:0采样)。

说明

此接口需要在init接口调用后才能使用。

需要权限:ohos.permission.CAMERA

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:4.1.0(11)

参数:

参数名

类型

必填

说明

viewControl

ViewControl

相机控制参数。

callback

AsyncCallback<Array<scanBarcode.ScanResult>>

回调函数,当启动相机流扫码成功,err为undefined,data为获取到的Array<scanBarcode.ScanResult>;否则为错误对象。

frameCallback

AsyncCallback<ScanFrame>

回调函数,当启动相机流扫码成功,err为undefined,data为获取到的相机预览流(YUV)ScanFrame;否则为错误对象。

起始版本:5.0.0(12)

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

401

Parameter error.

1000500001

Internal error.

示例:

import { hilog } from '@kit.PerformanceAnalysisKit';
import { AsyncCallback, BusinessError } from '@kit.BasicServicesKit';
import { scanBarcode, customScan } from '@kit.ScanKit';@Entry
@Component
struct customScanPage {// 设置预览流高度,默认单位:vp@State cameraHeight: number = 640;// 设置预览流宽度,默认单位:vp@State cameraWidth: number = 360;private mXComponentController: XComponentController = new XComponentController();// 返回自定义扫描结果的回调private callback: AsyncCallback<Array<scanBarcode.ScanResult>> =async (error: BusinessError, result: Array<scanBarcode.ScanResult>) => {if (error) {hilog.error(0x0001, '[Scan Sample]', `Failed to get ScanResult by callback. Code: ${error.code}, message: ${error.message}`);return;}hilog.info(0x0001, '[Scan Sample]', `Succeeded in getting ScanResult by callback, result is ${JSON.stringify(result)}`);}// 回调获取ScanFrameprivate frameCallback: AsyncCallback<customScan.ScanFrame> =async (error: BusinessError, scanFrame: customScan.ScanFrame) => {if (error) {hilog.error(0x0001, '[Scan Sample]', `Failed to get ScanFrame by callback. Code: ${error.code}, message: ${error.message}`);return;}hilog.info(0x0001, '[Scan Sample]', `Succeeded in getting ScanFrame by callback, scanFrame is ${JSON.stringify(scanFrame)}`);}build() {Stack() {XComponent({id: 'componentId',type: 'surface',controller: this.mXComponentController}).onLoad(() => {hilog.info(0x0001, '[Scan Sample]', 'Succeeded in- loading, onLoad is called.');// 获取XComponent的surfaceIdlet surfaceId: string = this.mXComponentController.getXComponentSurfaceId();hilog.info(0x0001, '[Scan Sample]', `Succeeded in getting surfaceId: ${surfaceId}`);// 设置ViewControl相应字段let viewControl: customScan.ViewControl = {width: this.cameraWidth,height: this.cameraHeight,surfaceId: surfaceId};customScan.start(viewControl, this.callback, this.frameCallback);})// 预览流宽、高,默认单位vp,支持px、lpx、vp.height(this.cameraHeight).width(this.cameraWidth).position({ x: 0, y: 0 })}.alignContent(Alignment.Bottom).height('100%').width('100%').position({ x: 0, y: 0 })}
}

customScan.getFlashLightStatus

getFlashLightStatus(): boolean

获取当前相机闪光灯状态。

说明

本接口必须在启动相机流start接口后使用,相机流初始化、停止和释放阶段使用都会抛出内部错误的异常。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:4.1.0(11)

返回值:

类型

说明

boolean

返回当前相机闪光灯状态。true代表开启,false代表关闭。

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

1000500001

Internal error.

示例:

import { customScan } from '@kit.ScanKit';// 根据当前闪光灯状态,选择打开或关闭闪关灯
if (customScan.getFlashLightStatus()) {customScan.closeFlashLight();
} else {customScan.openFlashLight();
}

customScan.openFlashLight

openFlashLight(): void

开启相机闪光灯。

说明

本接口必须在启动相机流start接口后使用,相机流初始化、停止和释放阶段使用都会抛出内部错误的异常。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:4.1.0(11)

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

1000500001

Internal error.

示例:

import { customScan } from '@kit.ScanKit';// 根据当前闪光灯状态,选择打开或关闭闪关灯
if (customScan.getFlashLightStatus()) {customScan.closeFlashLight();
} else {customScan.openFlashLight();
}

customScan.closeFlashLight

closeFlashLight(): void

关闭相机闪光灯。

说明

本接口必须在启动相机流start接口后使用,相机流初始化、停止和释放阶段使用都会抛出内部错误的异常。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:4.1.0(11)

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

1000500001

Internal error.

示例:

import { customScan } from '@kit.ScanKit';// 根据当前闪光灯状态,选择打开或关闭闪关灯
if (customScan.getFlashLightStatus()) {customScan.closeFlashLight();
} else {customScan.openFlashLight();
}

customScan.setZoom

setZoom(zoomValue: number): void

设置变焦比。变焦精度最高为小数点后两位,如果设置超过支持的精度范围,则只保留精度范围内数值。

说明

本接口必须在启动相机流start接口后使用。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:5.0.0(12)

参数:

参数名

类型

必填

说明

zoomValue

number

相机变焦比,精度最高为小数点后两位(例如1.45)。

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

401

Parameter error.

1000500001

Internal error.

示例:

import { customScan } from '@kit.ScanKit';// 设置变焦比
let zoomValue = 2.0;
customScan.setZoom(zoomValue);

customScan.getZoom

getZoom(): number

获取当前的变焦比。

说明

本接口必须在启动相机流start接口后使用。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:5.0.0(12)

返回值:

类型

说明

number

返回当前的变焦比。

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

1000500001

Internal error.

示例:

import { hilog } from '@kit.PerformanceAnalysisKit';
import { customScan } from '@kit.ScanKit';// 获取变焦比
let zoomValue = customScan.getZoom();
hilog.info(0x0001, '[Scan Sample]', `Succeeded in getting zoomValue, zoomValue is ${zoomValue}`);

customScan.setFocusPoint

setFocusPoint(point: scanBarcode.Point): void

设置相机焦点,焦点应在0-1坐标系内,该坐标系左上角为{0,0},右下角为{1,1}。此坐标系是以设备充电口在右侧时的横向设备方向为基准的,例如应用的预览界面布局以设备充电口在下侧时的竖向方向为基准,布局宽高为{w,h},且触碰点为{x,y},则转换后的坐标点为{y/h,1-x/w}。

说明

本接口必须在启动相机流start接口后使用。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:5.0.0(12)

参数:

参数名

类型

必填

说明

point

scanBarcode.Point

焦点。x、y设置范围应在[0,1]之内,超过范围,如果小于0设置0,大于1设置1。

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

401

Parameter error.

1000500001

Internal error.

示例:

import { customScan } from '@kit.ScanKit';// 设置对焦点
customScan.setFocusPoint({x:0.5, y:0.5});

customScan.resetFocus

resetFocus(): void

设置连续自动对焦模式。

说明

本接口必须在启动相机流start接口后使用。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:5.0.0(12)

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

1000500001

Internal error.

示例:

import { customScan } from '@kit.ScanKit';// 设置连续自动对焦模式
customScan.resetFocus();

customScan.on('lightingFlash')

on(type: 'lightingFlash', callback: AsyncCallback<boolean>): void

注册闪光灯打开时机回调,当扫码环境昏、亮状态变化时,使用callback异步回调返回打开时机结果。

说明

本接口必须在启动相机流start接口后使用,未启动相机流调用会抛出内部错误的异常。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:5.0.0(12)

参数:

参数名

类型

必填

说明

type

string

事件回调用类型,固定为'lightingFlash',当扫码环境亮度发生变化建议打开或关闭闪光灯时触发。

callback

AsyncCallback<boolean>

回调函数。返回true表示当前扫码环境暗,可以打开闪光灯,false表示环境亮,可以关闭闪光灯。

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

1000500001

Internal error.

示例:

import { BusinessError } from '@kit.BasicServicesKit';
import { hilog } from '@kit.PerformanceAnalysisKit';
import { customScan } from '@kit.ScanKit';let callback = (error: BusinessError, bool: boolean) => {if (error) {hilog.error(0x0001, '[Scan Sample]',`Failed to light Flash by callback. Code: ${error.code}, message: ${error.message}`);return;}hilog.info(0x0001, '[Scan Sample]', `Succeeded in lighting Flash by callback, bool is ${bool}`);
}
customScan.on('lightingFlash', callback);

customScan.off('lightingFlash')

off(type: 'lightingFlash', callback?: AsyncCallback<boolean>): void

注销闪光灯打开时机回调,使用callback异步回调返回结果。

说明

本接口必须在启动相机流start接口后使用,未启动相机流调用会抛出内部错误的异常。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:5.0.0(12)

参数:

参数名

类型

必填

说明

type

string

事件回调用类型,固定为'lightingFlash',当扫码环境亮度发生变化建议打开或关闭闪光灯时触发

callback

AsyncCallback<boolean>

回调函数,可选,有就是匹配on('lightingFlash') callback(callback对象不可是匿名函数),不填写callback则取消'lightingFlash'所有监听方法。

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

1000500001

Internal error.

示例:

import { BusinessError } from '@kit.BasicServicesKit';
import { hilog } from '@kit.PerformanceAnalysisKit';
import { customScan } from '@kit.ScanKit';let callback = (error: BusinessError, bool: boolean) => {if (error) {hilog.error(0x0001, '[Scan Sample]',`Failed to cancel Flash by callback. Code: ${error.code}, message: ${error.message}`);return;}hilog.info(0x0001, '[Scan Sample]', `Succeeded in cancelling Flash by callback, bool is ${bool}`);
}
// 可以不填callback,取消lightingFlash所有监听。填写callback,必须保持和customScan.on中监听的事件保持一致
customScan.off('lightingFlash', callback);

customScan.stop

stop(): Promise<void>

暂停扫码相机流,使用Promise异步回调。

说明

本接口必须在启动相机流start接口后使用,未启动相机流调用会抛出内部错误的异常。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:4.1.0(11)

返回值:

类型

说明

Promise<void>

Promise对象。无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

1000500001

Internal error.

示例:

import { hilog } from '@kit.PerformanceAnalysisKit';
import { customScan } from '@kit.ScanKit';
import { BusinessError } from '@kit.BasicServicesKit';customScan.stop().then(() => {hilog.info(0x0001, '[Scan Sample]', 'Succeeded in stopping scan by promise.');
}).catch((error: BusinessError) => {hilog.error(0x0001, '[Scan Sample]', `Failed to stop scan by promise. Code: ${error.code}, message: ${error.message}`);
});

customScan.stop

stop(callback: AsyncCallback<void>): void

暂停扫码相机流,使用Callback异步回调。

说明

本接口必须在启动相机流start接口后使用,未启动相机流调用会抛出内部错误的异常。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:4.1.0(11)

参数:

参数名

类型

必填

说明

callback

AsyncCallback<void>

回调函数。当暂停相机流成功,err为undefined,否则为错误对象。

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

1000500001

Internal error.

示例:

import { hilog } from '@kit.PerformanceAnalysisKit';
import { customScan } from '@kit.ScanKit';
import { BusinessError } from '@kit.BasicServicesKit';customScan.stop((error: BusinessError) => {if (error) {hilog.error(0x0001, '[Scan Sample]', `Failed to stop scan by callback. Code: ${error.code}, message: ${error.message}`);return;}hilog.info(0x0001, '[Scan Sample]', 'Succeeded in stopping scan by callback.');
})

customScan.release

release(): Promise<void>

释放扫码相机流,使用Promise异步回调。

说明

本接口建议在启动相机流start接口且暂停相机流stop接口后使用,未启动相机流调用会抛出内部错误的异常。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:4.1.0(11)

返回值:

类型

说明

Promise<void>

Promise对象。无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

1000500001

Internal error.

示例:

import { hilog } from '@kit.PerformanceAnalysisKit';
import { customScan } from '@kit.ScanKit';
import { BusinessError } from '@kit.BasicServicesKit';customScan.release().then(() => {hilog.info(0x0001, '[Scan Sample]', 'Succeeded in releasing scan by promise.');
}).catch((error: BusinessError) => {hilog.error(0x0001, '[Scan Sample]', `Failed to release scan by promise. Code: ${error.code}, message: ${error.message}`);
})

customScan.release

release(callback: AsyncCallback<void>): void

释放扫码相机流,使用Callback异步回调。

说明

本接口建议在启动相机流start接口且暂停相机流stop接口后使用,未启动相机流调用会抛出内部错误的异常。

系统能力:SystemCapability.Multimedia.Scan.ScanBarcode

起始版本:4.1.0(11)

参数:

参数名

类型

必填

说明

callback

AsyncCallback<void>

回调函数。当释放相机流成功,err为undefined,否则为错误对象。

错误码:

以下错误码的详细介绍请参见ArkTS API错误码。

错误码ID

错误信息

1000500001

Internal error.

示例:

import { hilog } from '@kit.PerformanceAnalysisKit';
import { customScan } from '@kit.ScanKit';
import { BusinessError } from '@kit.BasicServicesKit';customScan.release((error: BusinessError) => {if (error) {hilog.error(0x0001, '[Scan Sample]', `Failed to release scan by callback. Code: ${error.code}, message: ${error.message}`);return;}hilog.info(0x0001, '[Scan Sample]', 'Succeeded in releasing scan by callback.');
});

内容来源 HarmonyOS NEXT API12 官方文档

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/33228.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

使用ig507金融数据库的股票API接口经验有感:Java与Python

一、Java技术&#xff1a; 1. Java调用ig507金融数据库&#xff08;ig507.com&#xff09;股票API接口 引言&#xff1a; 随着金融科技的不断发展&#xff0c;数据驱动的投资策略变得越来越重要。本文将介绍如何使用Java语言调用ig507金融数据库的股票API接口&#xff0c;以…

Redis-数据类型-Hash

文章目录 1、查看redis是否启动2、通过客户端连接redis3、切换到db3数据库4、插入新数据返回15、获取指定哈希&#xff08;hash&#xff09;对象的所有字段&#xff08;field&#xff09;名6、获取存储在指定哈希&#xff08;hash&#xff09;对象中的所有字段&#xff08;fiel…

Javascript中的this关键字指向

this关键字介绍 不同情况下的this 1.对象调用方法中的this 2.在全局使用this(单独使用) 3.函数中的this 4.函数严格模式下 5.事件中的this 6.构造函数中的this 7.箭头函数没有this call()、apply()、bind() 的用法 this关键字介绍 面向对象语言中 this 表示当前对象…

ubuntu server 22.04安装 fdfs

ubuntu server 22.04安装 fdfs 安装依赖包 sudo apt -y install gcc g make pcre2-utils libpcre2-dev openssl libssl-dev zlib1g zlib1g-dev libxml2-utils libxml2 libxml2-dev libxslt-dev libgd-dev libgeoip-dev libgoogle-perftools-dev libperl-dev下载相关软件包 s…

Charles 显示内存不足解决方法

弹窗出现&#xff1a;Charles is running low on memory. Recording has been stopped. Please clear the session to free memory and continue recording. 官网解决方法&#xff1a; Charles runs out of memory After recording for a while Charles will run low on ava…

一文教你学会使用BitSet

开始之前&#xff0c;介绍一下​最近很火的开源技术&#xff0c;低代码。 作为一种软件开发技术逐渐进入了人们的视角里&#xff0c;它利用自身独特的优势占领市场一角——让使用者可以通过可视化的方式&#xff0c;以更少的编码&#xff0c;更快速地构建和交付应用软件&#…

喜讯:ISO年度审核通过!

在数字化时代&#xff0c;质量是我们不变的追求。近日&#xff0c;矩阵起源迎来了一个值得庆祝的时刻——三项ISO体系年度考核顺利通过&#xff01;分别为&#xff1a;ISO9001 质量管理体系标准认证、ISO20000信息技术服务管理体系认证及ISO27001 信息安全管理体系认证。 ISO标…

Grafana+Prometheus(InfluxDB)+Jmeter使用Nginx代理搭建可视化性能测试监控平台

前言 在这篇博客文章中&#xff0c;将分享JMeter > Prometheus(InfluxDB) > Grafana的集成&#xff0c;以及Nginx端口反向代理各服务的端口。 背景 在JMeter插件库中&#xff0c;有一些后端监听器可供Kafka、ElasticSearch和Azure使用。默认情况下&#xff0c;JMeter支…

探索 Screen:一个强大的终端复用工具

在日常的系统管理和开发工作中&#xff0c;我们经常需要同时运行多个终端任务&#xff0c;或者需要在一个终端会话中保持任务的持续运行&#xff0c;即使我们断开了与服务器的连接。这时&#xff0c;screen 命令就成为了一个非常有用的工具。本文将详细介绍 screen 的功能、使用…

苹果加码AI合作:继OpenAI后再携手Meta|TodayAI

两家长期竞争对手的合作前景 近日&#xff0c;据《华尔街日报》报道&#xff0c;苹果公司&#xff08;Apple&#xff09;和Meta公司&#xff08;Facebook母公司&#xff09;正在就一项潜在合作进行讨论&#xff0c;旨在将Meta的生成式AI模型整合到Apple Intelligence中。这一合…

nginx实现反向代理出现502的解决方法

目录 1. 出现原因 1.1. 防火墙拦截了端口 1.1.1. 使用 iptables 1.1.2. 使用 firewall-cmd&#xff08;适用于 CentOS/RHEL 7&#xff09; 1.2. docker容器中的ip和宿主机ip不一致 1. 出现原因 这里我是用的docker容器来进行nginx的启动的&#xff0c;在我们用nginx的配置…

Power Apps

目录 一、引言1、Power Apps2、应用场景3、Power Apps的优势与前景4、补充 二、数据源介绍1、SharePoint2、Excel3、Dataverse4、SQL5、补充&#xff08;1&#xff09;OneDrive 三、Power Apps应用类型1、画布应用2、模型驱动应用3、网站 Power Pages 四、Power Automate五、Po…

如何提高LabVIEW开发的效率?

提高LabVIEW开发效率对于工程师和研究人员来说非常重要&#xff0c;因为这不仅能缩短开发周期&#xff0c;还能提高系统的可靠性和可维护性。以下从多个角度详细分析如何提高LabVIEW开发的效率。 1. 项目规划与管理 1.1 明确需求 在项目开始前&#xff0c;详细明确项目需求&…

解决Playwright在Ubuntu下启动报错的问题:从环境到依赖的全面优化

在Ubuntu环境中使用Python进行web自动化测试时,Playwright是一个非常强大的工具。然而,在具体实践中,我们常常会遇到各种错误,尤其是在不同Python版本和依赖版本之间切换时。本文将详细介绍如何应对这些问题,并提供一些解决方法。 问题背景 在使用Playwright时,我们有时…

深入解析tcpdump:网络数据包捕获与分析的利器

引言 在网络技术日新月异的今天&#xff0c;网络数据包的捕获与分析成为了网络管理员、安全专家以及开发人员不可或缺的技能。其中&#xff0c;tcpdump作为一款强大的网络数据包捕获分析工具&#xff0c;广泛应用于Linux系统中。本文将从技术人的角度&#xff0c;详细分析tcpdu…

天气冷电脑不能启动找不到硬盘

https://diy.zol.com.cn/2004/0611/101994.shtml

Unity3D UI框架的设计架构与编码实现详解

一、引言 随着游戏开发技术的不断发展&#xff0c;Unity3D作为一款强大的跨平台游戏开发工具&#xff0c;受到了越来越多开发者的青睐。在Unity3D中&#xff0c;UI&#xff08;用户界面&#xff09;框架的设计是项目开发中的关键环节。本文将详细介绍Unity3D UI框架的设计架构…

MySQL中不持久和持久受限系统变量的简要介绍

SET PERSIST和SET PERSIST_ONLY是MySQL中用于将全局系统变量的值持久化到数据目录下的mysqld-auto.cnf选项文件的命令。但是&#xff0c;并非所有的系统变量都可以被持久化&#xff0c;或者只能在某些限制性条件下被持久化。以下是系统变量可能无法持久化或持久化受限的一些原因…

微信小程序开发用uni-app开发框架还是微信原生开发?

小程序依托微信入口&#xff0c;借助微信生态对流量补充的优势&#xff0c;拥有超12亿微信用户群体&#xff0c;微信小程序成为流量变现的一个重要通道。 从商家角度来说&#xff0c;借助小程序触达和获取线上用户的门槛更低&#xff0c;用户路径和交易转化也更快。同时&#…

Jmeter多用户token使用问题

背景 在测试的时候&#xff0c;经常会有模拟用户登录&#xff0c;拿到用户 token 后再去请求接口的场景。 这个模拟用户登录就会分为两种&#xff0c;一种是单用户&#xff0c;另一种是多用户。 日常自动化测试的时候可能一个用户对应 n 个用例就可以满足大多数场景&#xf…