繁体   English   中英

navigator.camera.getPicture无法正常工作

[英]navigator.camera.getPicture not working properly

在我的cordova(v3.3)单页应用程序中,使用以下代码获取相机图像

function takeSkiImage(){
   capturePhoto();
}  

function capturePhoto() {
// Take picture using device camera and retrieve image as base64-encoded string
    alert((navigator.camera.getPicture));
    navigator.camera.cleanup(); 
    navigator.camera.getPicture(onPhotoDataSuccess, function fail(error){
       alert("failed : " + error.code);
    }, {
      quality : 90,
      targetWidth : 2300,
      targetHeight : 1800,
      destinationType : Camera.DestinationType.FILE_URI
  });
}


function onPhotoDataSuccess(imageURI) {
    var gotFileEntry = function(fileEntry) {
    alert("got image file entry: " + fileEntry.fullPath);
    var gotFileSystem = function(fileSystem) {

        fileSystem.root.getDirectory("sample", {
            create : true
        }, function(dataDir) {
            var d = new Date();
            var n = d.getTime();
            var newFileName = n + ".jpg";
            alert("File Downloaded");
            // copy the file
            fileEntry.moveTo(dataDir, newFileName, null, fsFail);

        }, dirFail);

    };
    // get file system to copy or move image file to
    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0,
            gotFileSystem, fsFail);
};
// resolve file system for image
window.resolveLocalFileSystemURI(imageURI, gotFileEntry, fsFail);

// file system fail
var fsFail = function(error) {
    alert("failed with error code: " + error.code);

};

var dirFail = function(error) {
    alert("Directory error code: " + error.code);

};
}

上面的代码在NEXUS 7(v 4.2)设备中可以正常工作并警告相机启动,但在三星选项卡4(v 4.4)设备中,警告相机启动从不触发,但它goes to camera and able to take picture but not able to save.

当再次拍摄新图像时,仅存储旧图像。 像明智的做法是只存储先前的图像来获取新图像。 如何解决这个问题。 任何帮助都是非常明显的。

要保存图像,您需要正确配置选项。

function takeSkiImage(){
   alert("hi");
   navigator.camera.getPicture(function(imageData) {
      alert("camera start");
   }, onFail, {
    quality : 100, allowEdit : true,
    targetWidth: 2350,
    targetHeight: 1800,
    destinationType : Camera.DestinationType.FILE_URI,
    saveToPhotoAlbum : true
   });
} 

saveToPhotoAlbum : true保存图像所必需的。

更新:

要将文件保存在自定义位置,您必须使用File plugin

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM