我需要从 iPhone 照片库中选择一张图片并上传到服务器。我在画廊中有 10kb 的图像。
Titanium.Media.openPhotoGallery({
success : function(e) {
var image = e.media;
},
cancel : function() {
Ti.API.info('user cancelled galary.');
},
error : function(error) {
var alert = Titanium.UI.createAlertDialog({
title : 'Sorry!',
message : 'Error: ' + error.code
});
alert.show();
},
mediaTypes : Ti.Media.MEDIA_TYPE_PHOTO
});
我使用上面的代码,e.media 返回 40kb 大小的图像。为什么??