如何知道画廊形象的重量?

时间:2014-06-22 19:35:43

标签: titanium-mobile appcelerator

 Ti.Media.openPhotoGallery({
    success:function(event) {                   
 attch = event.media;       
    },
    cancel:function(){
        console.log("error!");
    }
});

我怎么知道attch的重量?如果可能的话,画廊中的文件名称。

1 个答案:

答案 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
    }
});