我如何从PhoneGap camera.getPicture获取File对象?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我如何从PhoneGap camera.getPicture获取File对象?相关的知识,希望对你有一定的参考价值。

这可能很简单,并且由PhoneGap的“Camera”插件,“File”插件或“File-Transfer”插件中的某些功能组合覆盖。我了解用户可以选择一个文件:

navigator.camera.getPicture(function (fileURI) {

    // *** need help here ***

}, function ()
    // handle errors
}, {
    destinationType: window.Camera.DestinationType.FILE_URI,
    sourceType: window.Camera.PictureSourceType.PHOTOLIBRARY,
    mediaType: window.Camera.MediaType.ALLMEDIA
});

如果有所作为,我也可以改为destinationType: window.Camera.DestinationType.DATA_URL

我在成功处理程序中的目标是获取File对象(https://developer.mozilla.org/en-US/docs/Web/API/File)。

答案

这样的事情应该做到这一点。

navigator.camera.getPicture(function (fileURI) {

    window.resolveLocalFileSystemURL(fileURI, 
        function(fileEntry){
            alert("got image file entry: " + fileEntry.fullPath);
            // fileEntry.file() should return a raw html File Object
        },
        function(){//error}
    );

}, function (){
// handle errors
}, {
    destinationType: window.Camera.DestinationType.FILE_URI,
    sourceType: window.Camera.PictureSourceType.PHOTOLIBRARY,
    mediaType: window.Camera.MediaType.ALLMEDIA
});
另一答案
window.resolveLocalFileSystemURI(fileURI, function(fileEntry) { /* your code here */ });

以上是关于我如何从PhoneGap camera.getPicture获取File对象?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 phonegap 从 Facebook API 获取朋友出生日期列表

我如何从 PhoneGap camera.getPicture 获取 File 对象?

如何从phonegap启动ios模拟器

如何从sqlite +phonegap中的表中获取第一列名称

我如何从PhoneGap camera.getPicture获取File对象?

如何使用 phonegap 将文件从一个位置移动/复制到另一个位置