来自n @ studio / nativescript-camera-plus的PhotoCapturedEvent不起作用

问题描述

我正在尝试解决使用nativescript angular开发的android应用程序上的错误。我使用@ nstudio / nativescript-camera-plus拍照,裁剪等。问题是在拍照时调用的PhotoCapturedEvent事件在android 10上不起作用(关联方法中的console.log没有出现在终端上),我也不明白为什么。

以下(我希望)代码中的相关部分:

html部分

<StackLayout>
  <ActionBar
    [title]="mode === 'Simple' ? i18nMode('simple') : i18nMode('multiple')"
    class="app-action-bar"
    class="ABPhoto"
  >
    <!-- [title]="mode === 'Simple' ? {{ 'photo.takePicture.mode.simple' | L }} : {{ 'photo.takePicture.mode.multiple' | L }}" -->
    <NavigationButton
      text=""
      android.systemIcon="ic_menu_back"
      (tap)="goBack()"
      class="buttonBack"
    ></NavigationButton>
  </ActionBar>

  <GridLayout rows="*,8000*,1000*" class="GDPhoto">
    <StackLayout
      #SLCam
      row="1"
      class="SLCameraPlus"
    >
      <StackLayout
        [width]="camWidth"
        [height]="camHeight"
      >
        <CameraPlus
          class="cameraElement"
          row="0"
          class="camScreen"
          debug="false"
          galleryPickerMode="single"
          showFlashIcon="true"
          showToggleIcon="true"
          showCaptureIcon="true"
          showGalleryIcon="true"
          (loaded)="camLoaded($event)"
          (toggleCameraEvent)="toggleCameraEvent($event)"
          (photoCapturedEvent)="photoCapturedEvent($event)"
          (errorEvent)="errorEvent($event)"
          (imagesSelectedEvent)="imagesSelectedEvent($event)"
        >
        </CameraPlus>
      </StackLayout>
    </StackLayout>
    <GridLayout row="2" columns="*,2*,*" class="bottomBar">
      <GridLayout rows="*,*" columns="*,*" col="0" row="0">
        <Label
          [ngStyle]="{ color: mode === 'Multiple' ? '#3789ab' : 'white' }"
          row="1"
          [text]="'\ue413'"
          (tap)="switchMode()"
          col="1"
          class="mdi switchMode"
        ></Label>
      </GridLayout>

      <Button
        [text]="'\ue3af'"
        (tap)="takePicFromCam()"
        col="1"
        class="mdi"
        id="takePhoto"
      ></Button>

      <GridLayout
        *ngIf="mode === 'Multiple'"
        class="GDsendPhotos"
        row="0"
        (tap)="toPreview()"
        id="toMultiplePhoto"
        col="2"
        VerticalOptions="Center"
        [isEnabled]="photoService.atLeastOnePhoto()"
      >
        <AbsolutLayout>
          <Label
            top="20"
            class="numberPhotos"
            verticalAlignement="center"
            [text]="photoService.getNbTot()"
            [opacity]="photoService.atLeastOnePhoto() ? 1 : 0.2"
          ></Label>

          <Image
            top="20"
            class="iconSend"
            verticalAlignement="center"
            src="res://ic_send_white"
            [opacity]="photoService.atLeastOnePhoto() ? 1 : 0.2"
          ></Image>
        </AbsolutLayout>
      </GridLayout>
    </GridLayout>
  </GridLayout>
</StackLayout>

打字稿部分

/**
   * Function automatically called when a photo is captured.
   * @param {any} e - the event
   */
public async photoCapturedEvent(e: any) {
    console.log("Je suis passé par là photoCapturedEvent");
    //console.log("PHOTO CAPTURED EVENT!!!");
    let path=e.data.android;
    if (isAndroid){
      this.pathCaptureAndroid=e.data.android;
      await this.loadImageFromGallery();
    } else {
      await this.loadImage(e.data as ImageAsset);
    }
    console.log("Je suis passé par là photoCapturedEvent milieu");
    if (this.mode === "Simple") {
      let pathF = await this.savePhoto();
      if (fsa.FileSystemAccess.prototype.fileExists(pathF)) {
        console.log("Je suis passé par là photoCapturedEvent un peu plus loin");
        this.photoService.finished = true;
        this.photoService.pathes.push(pathF);
        console.log("Je suis passé par là Ouverture du Cropping");
        this.cropp.emit();
      } else {
        //console.log("CROPPING CANCELED");
      }
    } else {
      this.photoService.pathes.push(await this.savePhoto());
    }
  }

/**
private async loadImageFromGallery() {
    // var photoFolder : fs.Folder = fs.Folder.fromPath(android.os.Environment.getExternalStorageDirectory().getAbsolutePath() + "/skinvoices/lastInvoice");
    // this.delay(20);
    // const pic = photoFolder.getFile("lastInvoice.jpg");
    console.log("Je suis passé par là loadImageFromGallery");
  
    this.imageSource = new ImageSource();
    this.imageSource = ImageSource.fromFileSync(this.pathCaptureAndroid);
  }

   /**
     * load the image taken when takePicFromCam was called and put it in this.imageSource.
     */
private async loadImage(imageAsset: ImageAsset) {

    if (imageAsset) {
      this.imageSource = new ImageSource();
      this.imageSource = await this.imageSource.fromAsset(imageAsset);
      
    } else {
      alert("Image Asset  was null");
      this.imageSource = null;
    }
  }

/**
     * Take a picture of what you see in the <CameraPlus>.
     */
public takePicFromCam(): void {
    console.log("Je suis passé par là takePicFromCam");
      this.cam.confirmPhotos = false;
      this.cam.debug = false;
      let outputret = this.cam.takePicture({
        confirm: false,saveToGallery: true,keepAspectRatio: true,autoSquareCrop: false,confirmRetakeText: "Hello",confirmSaveText: "GoodBye"
      });
      console.log("nouvelle photo: ",outputret);
      //this.photoCaptured
      
  }

takePicFromCam()中的console.log运行正常。我找不到有关不推荐使用的方法或其他方法的消息,因此,如果有人有想法,我要感谢他。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...