0

我采用了其他参与者提到的这段代码并对其进行了测试,它工作正常,我唯一想要的是将照片保存在我创建的新文件夹中,甚至保存在相机的照片相册中,以避免不得不去当前保存的隐藏路径..请帮助我

https://gist.github.com/2238017

4

1 回答 1

1

我创建了一个 phonegap 应用程序,我用相机拍摄的照片被保存在手机上的标准图库文件夹中。

试试我的代码:)

function capturePhoto() {
  // Take picture using device camera and retrieve image as base64-encoded string
  navigator.camera.getPicture(onPhotoDataSuccess, onFail,{
          quality : 25, 
          destinationType : Camera.DestinationType.FILE_URI, 
          sourceType : Camera.PictureSourceType.CAMERA, 
          allowEdit : true,
          encodingType: Camera.EncodingType.JPEG,
          targetWidth: 500,
          targetHeight: 500,
          popoverOptions: CameraPopoverOptions,
          saveToPhotoAlbum: true });
}

顺便说一句..它的 saveToPhotoAlbum: 确实你错过了它的样子,无论如何尝试我的代码,我希望它可以工作:)

于 2012-12-17T22:06:13.690 回答