0
我需要從iPhone照片庫中選擇圖片並上傳到服務器。我在畫廊有10kb圖像。如何從iPhone畫廊鈦得到圖像?
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大小的圖像。爲什麼??
無法幫助你,完全基於你提供的。您需要提供一個示例,說明您無法將其上傳到服務器。 –