我接受了其他参与者提到的这段代码,我测试了它并且工作正常,我唯一想要的是将照片保存在我创建的新文件夹中,甚至是相机中的照片专辑中,以避免转到当前保存的隐藏路径..请帮帮我
答案 0 :(得分: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:你错过了它看起来好像,反正尝试我的代码,我希望它有效:)