可以通过phonegap获取照片库内容

时间:2015-04-21 17:12:08

标签: cordova filesystems photolibrary

我想获取设备的库照片,以便在我的应用程序库中使用Phonegap / cordova显示它们。 是否可以在不通过camera.getPicture的情况下进行访问? 我确实想过使用phonegap的FileSystem API,但他们并没有帮助我。

1 个答案:

答案 0 :(得分:0)

我正在开发cordova-plugin-photo-library插件,它提供了跨平台方式来枚举设备上的所有照片。

用法:

cordova.plugins.photoLibrary.getLibrary(function (library) {
    // Here we have the library as array
    cordova.plugins.photoLibrary.getThumbnailUrl(library[0],
        function (thumbnailUrl) { image.src = thumbnailUrl; },
        function (err) { console.log('Error occured'); },
        {
            thumbnailWidth: 512,
            thumbnailHeight: 384,
            quality: 0.8
        });
    });