使用来自uploadify的onUploadComplete文件中的jquery获取图像尺寸

时间:2015-09-16 19:29:41

标签: jquery image uploadify dimensions

我正在尝试获取图像文件的图像宽度和高度,在它上传到服务器之后,但我似乎无法从正确完成的文件中创建此图像。 我想知道是否可以在没有文件阅读器或一般情况下遇到太多麻烦,但是如果有一个简单的方法我可能已经尝试过了。 。

这是代码:

'onUploadComplete' : function(fileObj) {
            var theImage = new Image();
            theImage.src = fileObj.attr(fileObj);
            // Get accurate measurements from that.
            var imageWidth = theImage.width();
            var imageHeight = theImage.height();
            alert('The image file ' + fileObj.name + ' has the following resolution: ' + imageWidth + 'px X ' + imageHeight + 'px.');
        },

现在没有任何事情发生,但如果我从它发出的警报中移除imageWidth和imageHeight,那么我认为它没有正确创建图像而我尝试了一些事情,但到目前为止无济于事。 。

0 个答案:

没有答案