Добавить квадрат к камере в ионном - PullRequest
0 голосов
/ 03 мая 2019

Можно ли добавить квадрат, как в QR-сканере, когда я собираюсь сделать снимок?

a busy cat

Мой код:

    options = {
      quality: 70,
      targetWidth: 200,
      targetHeight: 300,
      destinationType: this.camera.DestinationType.FILE_URI,
      encodingType: this.camera.EncodingType.JPEG,
      mediaType: this.camera.MediaType.PICTURE
    }

      this.camera.getPicture(options).then((imageData) => {
      this.loading = false;
      this.imagen64 = imageData;
      let filename = imageData.substring(imageData.lastIndexOf('/')+1);
      let path =  imageData.substring(0,imageData.lastIndexOf('/')+1);
      this.file.readAsDataURL(path, filename).then(res=> this.safeUrl = res  );
  }, (err) => {
    this.loading = false;
      alert(err);
  });
...