鸿蒙(API 12 Beta3版)【自界说界面扫码】

鼠扑  金牌会员 | 2024-10-23 13:14:47 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 868|帖子 868|积分 2604

基本概念

自界说界面扫码本领提供了相机流控制接口,可根据自身需求自界说扫码界面,适用于对扫码界面有定制化需求的应用开发。
说明
通过自界说页面扫码可以实现应用内的扫码功能,为了应用更好的体验,保举同时[接入“扫码直达”服务],应用可以同时支持系统扫码入口(控制中心扫一扫)和应用内扫码两种方式跳转到指定服务页面。
场景先容

自界说界面扫码本领提供扫码相机流控制接口,支持相机流的初始化、开启、暂停、释放、重新扫码功能;支持闪光灯的状态获取、开启、关闭;支持变焦比的获取和设置;支持设置相机核心和连续主动对焦;支持对条形码、二维码、MULTIFUNCTIONAL CODE进行扫码识别(详细类型参见[ScanType]),并获得码类型、码值、码位置信息、相机预览流(YUV)。该本领可用于单码和多码的扫描识别。
开发者集成自界说界面扫码本领可以自行界说扫码的界面样式,请按照业务流程完成扫码接口调用实现实时扫码功能。建议开发者基于[Sample Code]做个性化修改。
说明
YUV(相机预览流图像数据)适合于扫码和识物的综合识别场景,开发者需要自己控制相机流,普通扫码场景无需关注。
约束与限定



  • 需要请求相机的利用权限。
  • 需要开发者自行实现扫码的人机交互界面。比方:多码场景需要暂停相机流由用户选择一个码图进行识别。
业务流程



  • 发起请求: 用户向开发者的应用发起扫码请求,应用拉起已界说好的扫码界面。
  • 申请授权: 应用需要向用户申请相机权限授权。若未同意授权,则无法利用此功能。
  • 启动自界说界面扫码: 在扫码前必须调用init接口初始化自界说扫码界面,加载资源。相机流初始化竣事后,调用start接口开始扫码。
  • 自界说界面扫码相机操作: 可以设置自界说界面扫码相机操作参数,调整相应功能,包括闪光灯、变焦、焦距、暂停、重启扫码等。比方:

    • 根据当前码图位置,比如当前码图太远或太近时,调用getZoom获取变焦比,setZoom接口设置变焦比,调整焦距以便于用户扫码。
    • 根据当前扫码的光线条件或根据on(‘lightingFlash’)监听闪光灯开启时机,通过getFlashLightStatus接口先获取闪光灯状态,再调用openFlashLight/closeFlashLight接口控制闪光灯开启或关闭,以便于用户进行扫码。
    • 调用setFocusPoint设置对焦位置,resetFocus规复默认对焦模式,以便于用户进行扫码。
    • 在应用处于前后台或其他特别场景需要停止/重新进行扫码时,可调用stop或start接口来控制相机流达到暂停或重新扫码的目的。

  • 自界说界面扫码: Scan Kit API在扫码完成后会返回扫码结果。同时根据开发者的需要,Scan Kit API会返回每帧相机预览流数据。如需不重启相机并重新触发一次扫码,可以在start接口的Callback异步回调中,调用rescan接口。完成扫码后,需调用release接口进行释放扫码资源的操作。
  • 获取结果: 解析码值结果跳转应用服务页。
接口说明

自界说界面扫码提供init、start、stop、release、getFlashLightStatus、openFlashLight、closeFlashLight、setZoom、getZoom、setFocusPoint、resetFocus、rescan、on(‘lightingFlash’)、off(‘lightingFlash’)接口,其中部分接口返回值有两种返回形式:Callback和Promise回调。Callback和Promise回调函数只是返回值方式不一样,功能相同。
接口名描述[init](options?: scanBarcode.[ScanOptions]): void初始化自界说界面扫码,加载资源。无返回结果。[start](viewControl: [ViewControl]): Promise<Array<scanBarcode.[ScanResult]>>启动扫码相机流。利用Promise异步回调获取扫码结果。stop: Promise暂停扫码相机流。利用Promise异步回调返回执行结果。release: Promise释放扫码相机流。利用Promise异步回调返回执行结果。[start](viewControl: ViewControl, callback: AsyncCallback<Array<scanBarcode.ScanResult>>, frameCallback?: AsyncCallback<[ScanFrame]>): void启动扫码相机流。利用Callback异步回调返回扫码结果以及YUV图像数据。getFlashLightStatus: boolean获取闪光灯状态。返回结果为布尔值,true为打开状态,false为关闭状态。openFlashLight: void开启闪光灯。无返回结果。closeFlashLight: void关闭闪光灯。无返回结果。[setZoom](zoomValue : number): void设置变焦比。无返回结果。getZoom: number获取当前的变焦比。[setFocusPoint](point: scanBarcode.[Point]): void设置相机核心。resetFocus: void设置连续主动对焦模式。rescan: void触发一次重新扫码。仅对start接口Callback异步回调有效,Promise异步回调无效。[stop](callback: AsyncCallback): void暂停扫码相机流。利用Callback异步回调返回执行结果。[release](callback: AsyncCallback): void释放扫码相机流。利用Callback异步回调返回执行结果。[on](type: ‘lightingFlash’, callback: AsyncCallback): void注册闪光灯打开时机回调,利用Callback异步回调返回闪光灯打开时机。[off](type: ‘lightingFlash’, callback?: AsyncCallback): void注销闪光灯打开时机回调,利用Callback异步回调返回注销结果。 开发步骤

自界说界面扫码接口支持自界说UI界面,识别相机流中的条形码,二维码以及MULTIFUNCTIONAL CODE,并返回码图的值、类型、码的位置信息(码图最小外接矩形左上角和右下角的坐标)以及相机预览流(YUV)。
以下示例为调用自界说界面扫码接口拉起相机流并返回扫码结果和相机预览流(YUV)。

  • 在开发应用前,需要先申请相机相干权限,确保应用拥有访问相机的权限。在“module.json5”文件中设置相机权限,详细设置方式
       权限名说明授权方式ohos.permission.CAMERA答应应用利用相机扫码。user_grant
  • 利用接口[requestPermissionsFromUser]请求用户授权。详细申请方式及校验方式。
  • 导入自界说界面扫码接口以及相干接口模块,导入方法如下。
  1. import { scanCore, scanBarcode, customScan } from '@kit.ScanKit';
  2. // 导入功能涉及的权限申请、回调接口
  3. import { router, promptAction, display } from '@kit.ArkUI';
  4. import { AsyncCallback, BusinessError } from '@kit.BasicServicesKit';
  5. import { hilog } from '@kit.PerformanceAnalysisKit';
  6. import { common, abilityAccessCtrl } from '@kit.AbilityKit';
复制代码

  • 遵循[业务流程]完成自界说界面扫码功能。
    说明

    • 在设置start接口的viewControl参数时,width和height与[XComponent]的宽高值相同,start接口会根据XComponent的宽高比例从相机的分辨率选择最优分辨率,假如比例与相机的分辨率比例相差过大会返回内部错误。当前支持的分辨率比例为16:9、4:3、1:1。竖屏场景下,XComponent的高度需要大于宽度,且高宽比在支持的分辨率比例中。横屏场景下,XComponent的宽度需要大于高度,且宽高比在支持的分辨率比例中。
    • XComponent的宽高需根据利用场景盘算适配。比方:在开发设备为折叠屏时,需按照折叠屏的展开态和折叠态分别盘算XComponent的宽高,start接口会根据XComponent的宽高适配对应的相机分辨率。设备屏幕宽高可通过[display.getDefaultDisplaySync]方法获取(获取的为px单位,需要通过[px2vp]。
       

    • 通过Promise方式回调,调用自界说界面扫码接口拉起相机流并返回扫码结果。

  1. @Entry
  2. @Component
  3. struct CustomScanPage {
  4.   @State userGrant: boolean = false // 是否已申请相机权限
  5.   @State surfaceId: string = '' // xComponent组件生成id
  6.   @State isShowBack: boolean = false // 是否已经返回扫码结果
  7.   @State isFlashLightEnable: boolean = false // 是否开启了闪光灯
  8.   @State isSensorLight: boolean = false // 记录当前环境亮暗状态
  9.   @State cameraHeight: number = 640 // 设置预览流高度,默认单位:vp
  10.   @State cameraWidth: number = 360 // 设置预览流宽度,默认单位:vp
  11.   @State cameraOffsetX: number = 0 // 设置预览流x轴方向偏移量,默认单位:vp
  12.   @State cameraOffsetY: number = 0 // 设置预览流y轴方向偏移量,默认单位:vp
  13.   @State zoomValue: number = 1 // 预览流缩放比例
  14.   @State setZoomValue: number = 1 // 已设置的预览流缩放比例
  15.   @State scaleValue: number = 1 // 屏幕缩放比
  16.   @State pinchValue: number = 1 // 双指缩放比例
  17.   @State displayHeight: number = 0 // 屏幕高度,单位vp
  18.   @State displayWidth: number = 0 // 屏幕宽度,单位vp
  19.   @State scanResult: Array<scanBarcode.ScanResult> = [] // 扫码结果
  20.   private mXComponentController: XComponentController = new XComponentController()
  21.   private TAG: string = '[customScanPage]'
  22.   async onPageShow() {
  23.     // 自定义启动第一步,用户申请权限
  24.     await this.requestCameraPermission();
  25.     // 多码扫码识别,enableMultiMode: true 单码扫码识别enableMultiMode: false
  26.     let options: scanBarcode.ScanOptions = {
  27.       scanTypes: [scanCore.ScanType.ALL],
  28.       enableMultiMode: true,
  29.       enableAlbum: true
  30.     }
  31.     // 自定义启动第二步:设置预览流布局尺寸
  32.     this.setDisplay();
  33.     // 自定义启动第三步,初始化接口
  34.     customScan.init(options);
  35.   }
  36.   async onPageHide() {
  37.     // 页面消失或隐藏时,停止并释放相机流
  38.     this.userGrant = false;
  39.     this.isFlashLightEnable = false;
  40.     this.isSensorLight = false;
  41.     try {
  42.       customScan.off('lightingFlash');
  43.     } catch (error) {
  44.       hilog.error(0x0001, this.TAG, `Failed to off lightingFlash. Code: ${error.code}, message: ${error.message}`);
  45.     }
  46.     await customScan.stop();
  47.     // 自定义相机流释放接口
  48.     customScan.release().then(() => {
  49.       hilog.info(0x0001, this.TAG, 'Succeeded in releasing customScan by promise.');
  50.     }).catch((error: BusinessError) => {
  51.       hilog.error(0x0001, this.TAG,
  52.         `Failed to release customScan by promise. Code: ${error.code}, message: ${error.message}`);
  53.     })
  54.   }
  55.   // 用户申请权限
  56.   async reqPermissionsFromUser(): Promise<number[]> {
  57.     hilog.info(0x0001, this.TAG, 'reqPermissionsFromUser start');
  58.     let context = getContext() as common.UIAbilityContext;
  59.     let atManager = abilityAccessCtrl.createAtManager();
  60.     let grantStatus = await atManager.requestPermissionsFromUser(context, ['ohos.permission.CAMERA']);
  61.     return grantStatus.authResults;
  62.   }
  63.   // 用户申请相机权限
  64.   async requestCameraPermission() {
  65.     let grantStatus = await this.reqPermissionsFromUser();
  66.     for (let i = 0; i < grantStatus.length; i++) {
  67.       if (grantStatus[i] === 0) {
  68.         // 用户授权,可以继续访问目标操作
  69.         hilog.info(0x0001, this.TAG, 'Succeeded in getting permissions.');
  70.         this.userGrant = true;
  71.       }
  72.     }
  73.   }
  74.   // 竖屏时获取屏幕尺寸,设置预览流全屏示例
  75.   setDisplay() {
  76.     // 默认竖屏
  77.     let displayClass = display.getDefaultDisplaySync();
  78.     this.displayHeight = px2vp(displayClass.height);
  79.     this.displayWidth = px2vp(displayClass.width);
  80.     let maxLen: number = Math.max(this.displayWidth, this.displayHeight);
  81.     let minLen: number = Math.min(this.displayWidth, this.displayHeight);
  82.     const RATIO: number = 16 / 9;
  83.     this.cameraHeight = maxLen;
  84.     this.cameraWidth = maxLen / RATIO;
  85.     this.cameraOffsetX = (minLen - this.cameraWidth) / 2;
  86.   }
  87.   // toast显示扫码结果
  88.   async showScanResult(result: scanBarcode.ScanResult) {
  89.     // 使用toast显示出扫码结果
  90.     promptAction.showToast({
  91.       message: JSON.stringify(result),
  92.       duration: 5000
  93.     });
  94.   }
  95.   initCamera() {
  96.     this.isShowBack = false;
  97.     this.scanResult = [];
  98.     let viewControl: customScan.ViewControl = {
  99.       width: this.cameraWidth,
  100.       height: this.cameraHeight,
  101.       surfaceId: this.surfaceId
  102.     };
  103.     // 自定义启动第四步,请求扫码接口,通过Promise方式回调
  104.     customScan.start(viewControl)
  105.       .then(async (result: Array<scanBarcode.ScanResult>) => {
  106.         hilog.info(0x0001, this.TAG, `result: ${JSON.stringify(result)}`);
  107.         if (result.length) {
  108.           // 解析码值结果跳转应用服务页
  109.           this.scanResult = result;
  110.           this.isShowBack = true;
  111.           // 获取到扫描结果后暂停相机流
  112.           customScan.stop();
  113.         }
  114.       });
  115.   }
  116.   // 自定义扫码界面的顶部返回按钮和扫码提示
  117.   @Builder
  118.   TopTool() {
  119.     Column() {
  120.       Flex({ direction: FlexDirection.Row, justifyContent: FlexAlign.SpaceBetween, alignItems: ItemAlign.Center }) {
  121.         Text('返回')
  122.           .onClick(async () => {
  123.             router.back();
  124.           })
  125.       }.padding({ left: 24, right: 24, top: 40 })
  126.       Column() {
  127.         Text('扫描二维码/条形码')
  128.         Text('对准二维码/条形码,即可自动扫描')
  129.       }.margin({ left: 24, right: 24, top: 24 })
  130.     }
  131.     .height(146)
  132.     .width('100%')
  133.   }
  134.   build() {
  135.     Stack() {
  136.       if (this.userGrant) {
  137.         Column() {
  138.           XComponent({
  139.             id: 'componentId',
  140.             type: XComponentType.SURFACE,
  141.             controller: this.mXComponentController
  142.           })
  143.             .onLoad(async () => {
  144.               hilog.info(0x0001, this.TAG, 'Succeeded in loading, onLoad is called.');
  145.               // 获取XComponent组件的surfaceId
  146.               this.surfaceId = this.mXComponentController.getXComponentSurfaceId();
  147.               hilog.info(0x0001, this.TAG, `Succeeded in getting surfaceId: ${this.surfaceId}`);
  148.               this.initCamera();
  149.               // 闪光灯监听接口
  150.               customScan.on('lightingFlash', (error, isLightingFlash) => {
  151.                 if (error) {
  152.                   hilog.error(0x0001, this.TAG,
  153.                     `Failed to on lightingFlash. Code: ${error.code}, message: ${error.message}`);
  154.                   return;
  155.                 }
  156.                 if (isLightingFlash) {
  157.                   this.isFlashLightEnable = true;
  158.                 } else {
  159.                   if (!customScan.getFlashLightStatus()) {
  160.                     this.isFlashLightEnable = false;
  161.                   }
  162.                 }
  163.                 this.isSensorLight = isLightingFlash;
  164.               });
  165.             })  
  166.             .width(this.cameraWidth)
  167.             .height(this.cameraHeight)
  168.             .position({ x: this.cameraOffsetX, y: this.cameraOffsetY })
  169.         }
  170.         .height('100%')
  171.         .width('100%')
  172.       }
  173.       Column() {
  174.         this.TopTool()
  175.         Column() {
  176.         }
  177.         .layoutWeight(1)
  178.         .width('100%')
  179.         Column() {
  180.           Row() {
  181.             // 闪光灯按钮,启动相机流后才能使用
  182.             Button('FlashLight')
  183.               .onClick(() => {
  184.                 // 根据当前闪光灯状态,选择打开或关闭闪关灯
  185.                 if (customScan.getFlashLightStatus()) {
  186.                   customScan.closeFlashLight();
  187.                   setTimeout(() => {
  188.                     this.isFlashLightEnable = this.isSensorLight;
  189.                   }, 200);
  190.                 } else {
  191.                   customScan.openFlashLight();
  192.                 }
  193.               })
  194.               .visibility((this.userGrant && this.isFlashLightEnable) ? Visibility.Visible : Visibility.None)
  195.             // 扫码成功后,点击按钮后重新扫码
  196.             Button('Scan')
  197.               .onClick(() => {
  198.                 // 点击按钮重启相机流,重新扫码
  199.                 this.initCamera();
  200.               })
  201.               .visibility(this.isShowBack ? Visibility.Visible : Visibility.None)
  202.           }
  203.           Row() {
  204.             // 预览流设置缩放比例
  205.             Button('缩放比例,当前比例:' + this.setZoomValue)
  206.               .onClick(() => {
  207.                 // 设置相机缩放比例
  208.                 if (!this.isShowBack) {
  209.                   if (!this.zoomValue || this.zoomValue === this.setZoomValue) {
  210.                     this.setZoomValue = customScan.getZoom();
  211.                   } else {
  212.                     this.zoomValue = this.zoomValue;
  213.                     customScan.setZoom(this.zoomValue);
  214.                     setTimeout(() => {
  215.                       if (!this.isShowBack) {
  216.                         this.setZoomValue = customScan.getZoom();
  217.                       }
  218.                     }, 1000);
  219.                   }
  220.                 }
  221.               })
  222.           }
  223.           .margin({ top: 10, bottom: 10 })
  224.           Row() {
  225.             // 输入要设置的预览流缩放比例
  226.             TextInput({ placeholder: '输入缩放倍数' })
  227.               .type(InputType.Number)
  228.               .borderWidth(1)
  229.               .backgroundColor(Color.White)
  230.               .onChange(value => {
  231.                 this.zoomValue = Number(value);
  232.               })
  233.           }
  234.         }
  235.         .width('50%')
  236.         .height(180)
  237.       }
  238.       // 单码、多码扫描后,显示码图蓝点位置。点击toast码图信息
  239.       ForEach(this.scanResult, (item: scanBarcode.ScanResult, index: number) => {
  240.         if (item.scanCodeRect) {
  241.           Image($rawfile('scan_selected2.svg'))
  242.             .width(40)
  243.             .height(40)
  244.             .markAnchor({ x: 20, y: 20 })
  245.             .position({
  246.               x: (item.scanCodeRect.left + item?.scanCodeRect?.right) / 2 + this.cameraOffsetX,
  247.               y: (item.scanCodeRect.top + item?.scanCodeRect?.bottom) / 2 + this.cameraOffsetY
  248.             })
  249.             .onClick(() => {
  250.               this.showScanResult(item);
  251.             })
  252.         }
  253.       })
  254.     }
  255.     // 建议相机流设置为全屏
  256.     .width('100%')
  257.     .height('100%')
  258.     .onClick((event: ClickEvent) => {
  259.       // 是否已扫描到结果
  260.       if (this.isShowBack) {
  261.         return;
  262.       }
  263.       // 点击屏幕位置,获取点击位置(x,y),设置相机焦点
  264.       let x1 = vp2px(event.displayY) / (this.displayHeight + 0.0);
  265.       let y1 = 1.0 - (vp2px(event.displayX) / (this.displayWidth + 0.0));
  266.       customScan.setFocusPoint({ x: x1, y: y1 });
  267.       hilog.info(0x0001, this.TAG, `Succeeded in setting focusPoint x1: ${x1}, y1: ${y1}`);
  268.       // 设置连续自动对焦模式
  269.       setTimeout(() => {
  270.         customScan.resetFocus();
  271.       }, 200);
  272.     }).gesture(PinchGesture({ fingers: 2 })
  273.       .onActionStart((event: GestureEvent) => {
  274.         hilog.info(0x0001, this.TAG, 'Pinch start');
  275.       })
  276.       .onActionUpdate((event: GestureEvent) => {
  277.         if (event) {
  278.           this.scaleValue = event.scale;
  279.         }
  280.       })
  281.       .onActionEnd((event: GestureEvent) => {
  282.         // 是否已扫描到结果
  283.         if (this.isShowBack) {
  284.           return;
  285.         }
  286.         // 获取双指缩放比例,设置变焦比
  287.         try {
  288.           let zoom = customScan.getZoom();
  289.           this.pinchValue = this.scaleValue * zoom;
  290.           customScan.setZoom(this.pinchValue);
  291.           hilog.info(0x0001, this.TAG, 'Pinch end');
  292.         } catch (error) {
  293.           hilog.error(0x0001, this.TAG, `Failed to setZoom. Code: ${error.code}, message: ${error.message}`);
  294.         }
  295.       }))
  296.   }
  297. }
复制代码


  • 通过Callback方式回调,调用自界说界面扫码接口拉起相机流并返回扫码结果和相机预览流(YUV)。
  1. import { bundleManager, PermissionRequestResult, Permissions } from '@kit.AbilityKit';
  2. const TAG = '[YUV CPSample]';
  3. let context = getContext(this) as common.UIAbilityContext;
  4. // 用户申请权限
  5. export class PermissionsUtil {
  6.   public static async checkAccessToken(permission: Permissions): Promise<abilityAccessCtrl.GrantStatus> {
  7.     let atManager = abilityAccessCtrl.createAtManager();
  8.     let grantStatus: abilityAccessCtrl.GrantStatus = -1;
  9.     // 获取应用程序的accessTokenID
  10.     let tokenId: number = 0;
  11.     let bundleInfo: bundleManager.BundleInfo =
  12.       await bundleManager.getBundleInfoForSelf(bundleManager.BundleFlag.GET_BUNDLE_INFO_WITH_APPLICATION);
  13.     let appInfo: bundleManager.ApplicationInfo = bundleInfo.appInfo;
  14.     tokenId = appInfo.accessTokenId;
  15.     // 校验应用是否被授予权限
  16.     grantStatus = await atManager.checkAccessToken(tokenId, permission);
  17.     return grantStatus;
  18.   }
  19.   // 申请相机权限
  20.   public static async reqPermissionsFromUser(): Promise<number[]> {
  21.     hilog.info(0x0001, TAG, 'Succeeded in getting permissions by promise.')
  22.     let atManager = abilityAccessCtrl.createAtManager();
  23.     let grantStatus: PermissionRequestResult = { permissions: [], authResults: [] }
  24.     grantStatus = await atManager.requestPermissionsFromUser(context, ['ohos.permission.CAMERA']);
  25.     return grantStatus.authResults;
  26.   }
  27. }
  28. @Extend(Column)
  29. function mainStyle() {
  30.   .width('100%')
  31.   .height('100%')
  32.   .padding({
  33.     top: 40
  34.   })
  35.   .justifyContent(FlexAlign.Center)
  36. }
  37. @Entry
  38. @Component
  39. struct YUVScan {
  40.   @State userGrant: boolean = false // 是否已申请相机权限
  41.   @State surfaceId: string = '' // xComponent组件生成id
  42.   @State cameraHeight: number = 640 // 设置预览流高度,默认单位:vp
  43.   @State cameraWidth: number = 360 // 设置预览流宽度,默认单位:vp
  44.   @State cameraOffsetX: number = 0 // 设置预览流x轴方向偏移量,默认单位:vp
  45.   @State cameraOffsetY: number = 0 // 设置预览流y轴方向偏移量,默认单位:vp
  46.   @State zoomValue: number = 1 // 预览流缩放比例
  47.   @State setZoomValue: number = 1 // 已设置的预览流缩放比例
  48.   @State isReleaseCamera: boolean = false // 是否已释放相机流
  49.   @State scanWidth: number = 384 // xComponent宽度,默认设置384,单位vp
  50.   @State scanHeight: number = 682 // xComponent高度,默认设置682,单位vp
  51.   @State scanBottom: number = 220
  52.   @State scanOffsetX: number = 0 // xComponent位置x轴偏移量,单位vp
  53.   @State scanOffsetY: number = 0 // xComponent位置y轴偏移量,单位vp
  54.   @State scanCodeRect: Array<scanBarcode.ScanCodeRect> = [] // 扫码结果码图位置
  55.   @State scanFlag: boolean = false // 是否已经扫码到结果
  56.   @State scanFrameResult: string = ''
  57.   @State scaleValue: number = 1 // 屏幕缩放比
  58.   @State pinchValue: number = 1 // 双指缩放比例
  59.   @State displayHeight: number = 0 // 屏幕高度,单位vp
  60.   @State displayWidth: number = 0 // 屏幕宽度,单位vp
  61.   private mXComponentController: XComponentController = new XComponentController()
  62.   private viewControl: customScan.ViewControl = { width: 1920, height: 1080, surfaceId: this.surfaceId }
  63.   options: scanBarcode.ScanOptions = {
  64.     // 扫码类型,可选参数
  65.     scanTypes: [scanCore.ScanType.ALL],
  66.     // 是否开启多码识别,可选参数
  67.     enableMultiMode: true,
  68.     // 是否开启相册扫码,可选参数
  69.     enableAlbum: true,
  70.   }
  71.   // 返回自定义扫描结果的回调
  72.   private callback: AsyncCallback<scanBarcode.ScanResult[]> =
  73.     async (error: BusinessError, result: scanBarcode.ScanResult[]) => {
  74.       if (error && error.code) {
  75.         hilog.error(0x0001, TAG,
  76.           `Failed to get ScanResult by callback. Code: ${error.code}, message: ${error.message}`);
  77.         return;
  78.       }
  79.       // 解析码值结果跳转应用服务页
  80.       hilog.info(0x0001, TAG, `Succeeded in getting ScanResult by callback, result: ${JSON.stringify(result)}`);
  81.     }
  82.   // 返回相机帧的回调
  83.   private frameCallback: AsyncCallback<customScan.ScanFrame> =
  84.     async (error: BusinessError, frameResult: customScan.ScanFrame) => {
  85.       if (error) {
  86.         hilog.error(0x0001, TAG, `Failed to get ScanFrame by callback. Code: ${error.code}, message: ${error.message}`);
  87.         return;
  88.       }
  89.       // byteBuffer相机YUV图像数组
  90.       hilog.info(0x0001, TAG,
  91.         `Succeeded in getting ScanFrame.byteBuffer.byteLength: ${frameResult.byteBuffer.byteLength}`)
  92.       hilog.info(0x0001, TAG, `Succeeded in getting ScanFrame.width: ${frameResult.width}`)
  93.       hilog.info(0x0001, TAG, `Succeeded in getting ScanFrame.height: ${frameResult.height}`)
  94.       this.scanFrameResult = JSON.stringify(frameResult.scanCodeRects);
  95.       let newWidth = frameResult.height;
  96.       if (frameResult && frameResult.scanCodeRects && frameResult.scanCodeRects.length > 0 && !this.scanFlag) {
  97.         if (frameResult.scanCodeRects[0]) {
  98.           this.stopCamera();
  99.           this.scanCodeRect = [];
  100.           this.scanFlag = true;
  101.           // 码图位置信息转换
  102.           this.changeToXComponent(frameResult);
  103.         } else {
  104.           this.scanFlag = false;
  105.         }
  106.       }
  107.     }
  108.   // frameCallback横向码图位置信息转换为预览流xComponent对应码图位置信息
  109.   changeToXComponent(frameResult: customScan.ScanFrame) {
  110.     if (frameResult && frameResult.scanCodeRects) {
  111.       let frameHeight = frameResult.height;
  112.       let ratio = this.scanWidth / frameHeight;
  113.       frameResult.scanCodeRects.forEach((item) => {
  114.         this.scanCodeRect.push({
  115.           left: this.toFixedNumber((frameHeight - item.bottom) * ratio),
  116.           top: this.toFixedNumber(item.left * ratio),
  117.           right: this.toFixedNumber((frameHeight - item.top) * ratio),
  118.           bottom: this.toFixedNumber(item.right * ratio)
  119.         });
  120.       });
  121.       this.scanFrameResult = JSON.stringify(this.scanCodeRect);
  122.     }
  123.   }
  124.   toFixedNumber(no: number): number {
  125.     return Number((no).toFixed(1));
  126.   }
  127.   async onPageShow() {
  128.     // 自定义启动第一步,用户申请权限
  129.     const permissions: Array<Permissions> = ['ohos.permission.CAMERA'];
  130.     // 自定义启动第二步:设置预览流布局尺寸
  131.     this.setDisplay();
  132.     let grantStatus = await PermissionsUtil.checkAccessToken(permissions[0]);
  133.     if (grantStatus === abilityAccessCtrl.GrantStatus.PERMISSION_GRANTED) {
  134.       // 已经授权,可以继续访问目标操作
  135.       this.userGrant = true;
  136.       if (this.surfaceId) {
  137.         // 自定义启动第三步,初始化接口
  138.         this.initCamera();
  139.       }
  140.     } else {
  141.       // 申请相机权限
  142.       this.requestCameraPermission();
  143.     }
  144.   }
  145.   async onPageHide() {
  146.     this.releaseCamera();
  147.   }
  148.   // 用户申请权限
  149.   async requestCameraPermission() {
  150.     let grantStatus = await PermissionsUtil.reqPermissionsFromUser()
  151.     let length: number = grantStatus.length;
  152.     for (let i = 0; i < length; i++) {
  153.       if (grantStatus[i] === 0) {
  154.         // 用户授权,可以继续访问目标操作
  155.         this.userGrant = true;
  156.       } else {
  157.         // 用户拒绝授权,提示用户必须授权才能访问当前页面的功能,并引导用户到系统设置中打开相应的权限
  158.         this.userGrant = false;
  159.       }
  160.     }
  161.   }
  162.   // 竖屏时获取屏幕尺寸,设置预览流全屏示例
  163.   setDisplay() {
  164.     // 以手机为例计算宽高
  165.     let displayClass = display.getDefaultDisplaySync();
  166.     this.displayHeight = px2vp(displayClass.height);
  167.     this.displayWidth = px2vp(displayClass.width);
  168.     if (displayClass !== null) {
  169.       this.scanWidth = px2vp(displayClass.width);
  170.       this.scanHeight = Math.round(this.scanWidth * this.viewControl.width / this.viewControl.height);
  171.       this.scanBottom = Math.max(220, px2vp(displayClass.height) - this.scanHeight);
  172.       this.scanOffsetX = 0;
  173.       this.scanOffsetY = 0;
  174.     }
  175.   }
  176.   // 初始化相机流
  177.   async initCamera() {
  178.     this.isReleaseCamera = false;
  179.     customScan.init(this.options);
  180.     hilog.info(0x0001, TAG, 'Succeeded in initing customScan with options.');
  181.     this.scanCodeRect = [];
  182.     this.scanFlag = false;
  183.     // 自定义启动第四步,请求扫码接口
  184.     customScan.start(this.viewControl, this.callback, this.frameCallback);
  185.   }
  186.   // 暂停相机流
  187.   async stopCamera() {
  188.     if (!this.isReleaseCamera) {
  189.       customScan.stop();
  190.     }
  191.   }
  192.   // 释放相机流
  193.   async releaseCamera() {
  194.     if (!this.isReleaseCamera) {
  195.       await this.stopCamera();
  196.       await customScan.release();
  197.       this.isReleaseCamera = true;
  198.     }
  199.   }
  200.   build() {
  201.     Stack() {
  202.       // 相机预览流XComponent
  203.       if (this.userGrant) {
  204.         Column() {
  205.           XComponent({
  206.             id: 'componentId',
  207.             type: XComponentType.SURFACE,
  208.             controller: this.mXComponentController
  209.           })
  210.             .onLoad(() => {
  211.               hilog.info(0x0001, TAG, 'Succeeded in loading, onLoad is called.');
  212.               this.surfaceId = this.mXComponentController.getXComponentSurfaceId();
  213.               hilog.info(0x0001, TAG, `Succeeded in getting surfaceId is ${this.surfaceId}`);
  214.               this.viewControl = { width: this.scanWidth, height: this.scanHeight, surfaceId: this.surfaceId };
  215.               // 启动相机进行扫码
  216.               this.initCamera();
  217.             })
  218.             .height(this.scanHeight)
  219.             .width(this.scanWidth)
  220.             .position({ x: 0, y: 0 })
  221.         }
  222.         .height('100%')
  223.         .width('100%')
  224.         .position({ x: this.scanOffsetX, y: this.scanOffsetY })
  225.       }
  226.       Column() {
  227.         Column() {
  228.         }
  229.         .layoutWeight(1)
  230.         .width('100%')
  231.         Column() {
  232.           Row() {
  233.             // 闪光灯按钮,启动相机流后才能使用
  234.             Button('FlashLight')
  235.               .onClick(() => {
  236.                 // 根据当前闪光灯状态,选择打开或关闭闪关灯
  237.                 if (customScan.getFlashLightStatus()) {
  238.                   customScan.closeFlashLight();
  239.                 } else {
  240.                   customScan.openFlashLight();
  241.                 }
  242.               })
  243.               .visibility(this.scanFlag ? Visibility.None : Visibility.Visible)
  244.           }
  245.           Row() {
  246.             // 预览流设置缩放比例
  247.             Button('缩放比例,当前比例:' + this.setZoomValue)
  248.               .width(200)
  249.               .alignSelf(ItemAlign.Center)
  250.               .onClick(() => {
  251.                 // 设置相机缩放比例
  252.                 if (!this.scanFlag) {
  253.                   if (!this.zoomValue || this.zoomValue === this.setZoomValue) {
  254.                     this.setZoomValue = customScan.getZoom();
  255.                   } else {
  256.                     this.zoomValue = this.zoomValue;
  257.                     customScan.setZoom(this.zoomValue);
  258.                     setTimeout(() => {
  259.                       if (!this.scanFlag) {
  260.                         this.setZoomValue = customScan.getZoom();
  261.                       }
  262.                     }, 1000);
  263.                   }
  264.                 }
  265.               })
  266.           }
  267.           .margin({ top: 10, bottom: 10 })
  268.           .visibility(this.scanFlag ? Visibility.None : Visibility.Visible)
  269.           Row() {
  270.             // 输入要设置的预览流缩放比例
  271.             TextInput({ placeholder: '输入缩放倍数' })
  272.               .width(200)
  273.               .type(InputType.Number)
  274.               .borderWidth(1)
  275.               .backgroundColor(Color.White)
  276.               .onChange(value => {
  277.                 this.zoomValue = Number(value);
  278.               })
  279.           }
  280.           .visibility(this.scanFlag ? Visibility.None : Visibility.Visible)
  281.           Text(this.scanFlag ? '继续扫码' : '扫码中')
  282.             .height(30)
  283.             .fontSize(16)
  284.             .fontColor(Color.White)
  285.             .onClick(() => {
  286.               if (this.scanFlag) {
  287.                 this.scanFrameResult = '';
  288.                 this.initCamera();
  289.               }
  290.             })
  291.           Text('扫码结果:' + this.scanFrameResult).fontColor(Color.White).fontSize(12)
  292.         }
  293.         .width('100%')
  294.         .height(this.scanBottom)
  295.         .backgroundColor(Color.Black)
  296.       }
  297.       .mainStyle()
  298.       Image($rawfile('scan_back.svg'))
  299.         .width(20)
  300.         .height(20)
  301.         .position({
  302.           x: 40,
  303.           y: 40
  304.         })
  305.         .onClick(() => {
  306.           router.back();
  307.         })
  308.       // 实时扫码码图中心点位置
  309.       if (this.scanFlag && this.scanCodeRect.length > 0) {
  310.         ForEach(this.scanCodeRect, (item: scanBarcode.ScanCodeRect, index: number) => {
  311.           Image($rawfile('scan_selected2.svg'))
  312.             .width(40)
  313.             .height(40)
  314.             .markAnchor({ x: 20, y: 20 })
  315.             .position({
  316.               x: (item.left + item.right) / 2 + this.scanOffsetX,
  317.               y: (item.top + item.bottom) / 2 + this.scanOffsetY
  318.             })
  319.         })
  320.       }
  321.     }
  322.     .width('100%')
  323.     .height('100%')
  324.     .backgroundColor(this.userGrant ? Color.Transparent : Color.Black)
  325.     .onClick((event: ClickEvent) => {
  326.       // 是否已扫描到结果
  327.       if (this.scanFlag) {
  328.         return;
  329.       }
  330.       // 点击屏幕位置,获取点击位置(x,y),设置相机焦点
  331.       let x1 = vp2px(event.displayY) / (this.displayHeight + 0.0);
  332.       let y1 = 1.0 - (vp2px(event.displayX) / (this.displayWidth + 0.0));
  333.       customScan.setFocusPoint({ x: x1, y: y1 });
  334.       hilog.info(0x0001, TAG, `Succeeded in setting focusPoint x1: ${x1}, y1: ${y1}`);
  335.       setTimeout(() => {
  336.         customScan.resetFocus();
  337.       }, 200);
  338.     })
  339.     .gesture(PinchGesture({ fingers: 2 })
  340.       .onActionStart((event: GestureEvent) => {
  341.         hilog.info(0x0001, TAG, 'Pinch start');
  342.       })
  343.       .onActionUpdate((event: GestureEvent) => {
  344.         if (event) {
  345.           this.scaleValue = event.scale;
  346.         }
  347.       })
  348.       .onActionEnd((event: GestureEvent) => {
  349.         // 是否已扫描到结果
  350.         if (this.scanFlag) {
  351.           return;
  352.         }
  353.         // 获取双指缩放比例,设置变焦比
  354.         try {
  355.           let zoom = customScan.getZoom();
  356.           this.pinchValue = this.scaleValue * zoom;
  357.           customScan.setZoom(this.pinchValue);
  358.           hilog.info(0x0001, TAG, 'Pinch end');
  359.         } catch (error) {
  360.           hilog.error(0x0001, TAG, `Failed to setZoom. Code: ${error.code}, message: ${error.message}`);
  361.         }
  362.       }))
  363.   }
  364. }
复制代码

  • 通过scanCodeRect数据可确定码图中心点的位置,利用说明如下。

    • scanCodeRect的四个点坐标如下,可根据坐标点绘制码图外围矩形框。

      • 左上角(x, y):(left, top)
               

      • 右上角(x, y):(right, top)
               

      • 左下角(x, y):(left, bottom)
               

      • 右下角(x, y):(right, bottom)

    • 由于码图中心点坐标需和xComponent的坐标保持一致,假如xComponent的x轴和y轴存在偏移,则码图位置需做相应的偏移。比方:x轴偏移量为:scanOffsetX;y轴偏移量为:scanOffsetY,中心点坐标终极转换为:

      • x = (left + right) / 2 + scanOffsetX
      • y = (top + bottom) / 2 + scanOffsetY


模拟器开发

暂不支持模拟器利用,调用会返回错误信息“Emulator is not supported.”
最后呢

许多开发朋友不知道需要学习那些鸿蒙技术?鸿蒙开发岗位需要把握那些核心技术点?为此鸿蒙的开发学习必须要系统性的进行。
而网上有关鸿蒙的开发资料非常的少,假如你想学好鸿蒙的应用开发与系统底层开发。你可以参考这份资料,少走许多弯路,节省没必要的麻烦。由两位前阿里高级研发工程师团结打造的《鸿蒙NEXT星河版OpenHarmony开发文档》里面内容包含了(ArkTS、ArkUI开发组件、Stage模子、多端摆设、分布式应用开发、音频、视频、WebGL、OpenHarmony多媒体技术、Napi组件、OpenHarmony内核、Harmony南向开发、鸿蒙项目实战等等)鸿蒙(Harmony NEXT)技术知识点
假如你是一名Android、Java、前端等等开发人员,想要转入鸿蒙方向发展。可以直接领取这份资料辅助你的学习。下面是鸿蒙开发的学习路线图。

针对鸿蒙发展路线打造的鸿蒙学习文档。话不多说,我们直接看详细鸿蒙(OpenHarmony )手册(共计1236页)与鸿蒙(OpenHarmony )开发入门视频,帮助各人在技术的道路上更进一步。


  • 《鸿蒙 (OpenHarmony)开发学习视频》
  • 《鸿蒙生态应用开发V2.0白皮书》
  • 《鸿蒙 (OpenHarmony)开发底子到实战手册》
  • OpenHarmony北向、南向开发情况搭建
  • 《鸿蒙开发底子》
  • 《鸿蒙开发进阶》
  • 《鸿蒙开发实战》

总结

鸿蒙—作为国家主力推送的国产操作系统。部分的高校已经取消了安卓课程,从而开设鸿蒙课程;企业纷纷跟进启动了鸿蒙研发。
而且鸿蒙是完全具备无与伦比的机遇和潜力的;预计到年底将有 5,000 款的应用完成原生鸿蒙开发,未来将会支持 50 万款的应用。那么这么多的应用需要开发,也就意味着需要有更多的鸿蒙人才。鸿蒙开发工程师也将会迎来发作式的增长,学习鸿蒙势在必行! 自↓↓↓拿


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

鼠扑

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表