Tuesday, 16 December 2014

Get Image Dimension Before upload with angularjs

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);

No comments:

Post a Comment