var _URL = window.URL || window.webkitURL;
var image, file;
if ((file = $files[0])) {
image = new Image();
image.onload = function() {
$scope.$apply(function() {
alert(image.width);
});
};
image.src = _URL.createObjectURL(file);
var image, file;
if ((file = $files[0])) {
image = new Image();
image.onload = function() {
$scope.$apply(function() {
alert(image.width);
});
};
image.src = _URL.createObjectURL(file);
No comments:
Post a Comment