我正在使用ionic和cordova构建应用程序。我设法访问了相机胶卷,让用户可以手动选择一张照片。 但是,我不确定如何在没有人工干预的情况下自动访问所有照片。我想在我的代码中将它们附加到一个数组中以便进一步处理。 我找到了这个插件,但它对我不起作用:
https://github.com/driftyco/cordova-camera-roll
谢谢。
答案 0 :(得分:0)
您可以一次最多选择10张图像。
使用多个图像选择器插件选择最多10张图像。
Github链接 - https://github.com/wymsee/cordova-imagePicker
安装 -
phonegap plugin add https://github.com/wymsee/cordova-imagePicker.git
cordova plugin add https://github.com/wymsee/cordova-imagePicker.git
示例 -
window.imagePicker.getPictures(
function(results) {
for (var i = 0; i < results.length; i++) {
console.log('Image URI: ' + results[i]);
}
}, function (error) {
console.log('Error: ' + error);
}, {
maximumImagesCount: 10,
width: 800
}
);