相机捕获图像后,Phonegap应用程序退出.[Android]产品

Edw*_*Toh 16 camera android cordova

我在Phonegap 1.4.1中遇到错误.

我创建的phonegap应用程序在拍完照片后返回应用程序后重新启动.

这是我正在使用的代码:

function capturePhoto() {
  // Take picture using device camera and retrieve image as base64-encoded string
  navigator.camera.getPicture(onPhotoURISuccess, onFail, { quality: 50, destinationType: Camera.DestinationType.FILE_URI });
}

function onPhotoURISuccess(imageURI) {
  // Uncomment to view the image file URI 
  // console.log(imageURI);

  // Get image handle
  //
  var largeImage = document.getElementById('largeImage');

  // Unhide image elements
  //
  largeImage.style.display = 'block';

  // Show the captured photo
  // The inline CSS rules are used to resize the image
  //
  largeImage.src = imageURI;
}
Run Code Online (Sandbox Code Playgroud)

Pau*_*ien -1

尝试将质量参数降低到 25。某些设备没有足够的内存来支持 50。