Ti.Media.openPhotoGallery({
success:function(event) {
attch = event.media;
},
cancel:function(){
console.log("error!");
}
});
我怎么知道attch的重量?如果可能的话,画廊中的文件名称。
答案 0 :(得分:0)
如文档中所述,方法success
将返回包含属性media
的对象,该属性是Blob格式的图像/视频。如果你想知道图像的宽度,请执行以下操作:
Ti.Media.openPhotoGallery({
success: function(event) {
var image = event.media;
console.log(image.width);
console.log(image.size); // image size in bytes
}
});