gzgchzc博客最新更新地址:http://blog.gzvtc.cc/
ImagePicker
Cordova 插件实现 iOS和Android 4及以上图像选择器。
cordova plugin add cordova-plugin-image-picker
方法(Methods)
getPictures(options)
获得一个图片列表,有选择的数量,图片质量和图片大小
参数 类型 说明
options.maximumImagesCount Integer 最大选择图片数量
options.width Integer 筛选宽度如果宽高为0返回所有尺寸图片
options.height Integer 筛选高度如果宽高为0返回所有尺寸图片
options.quality Integer 图像质量的大小,默认为100
Examples
module.controller('ThisCtrl', function($scope, $cordovaImagePicker) {
var options = {
maximumImagesCount: 10,
width: 800,
height: 800,
quality: 80
};
$cordovaImagePicker.getPictures(options)
.then(function (results) {
for (var i = 0; i < results.length; i++) {
console.log('Image URI: ' + results[i]);
}
}, function(error) {
// error getting photos
});
});