繁体   English   中英

通过AngularJS的图像宽度高度(ng-file-upload)

[英]Image Width Height Via AngularJS (ng-file-upload)

我需要根据1:3的比例来验证图像的宽度-高度。 我正在使用ng-file-upload上传图片。 验证需要先完成,然后再发送到服务器。

我对如何从所选图像中获取图像宽度/高度一无所知。 有人可以帮我吗?

我正在从此网站上关注教程: http : //odetocode.com/blogs/scott/archive/2013/07/03/building-a-filereader-service-for-angularjs-the-service.aspx

这将是该插件的功能请求。 作为解决方法,您可以执行以下操作:

<div ngf-select ngf-model="image" ngf-validate-fn-async="validateRatio(image)" ngf-pattern="'image/*'" accept="image/*" >

$scope.validateRatio = function(image) {
  var defer = $q.defer();
  Upload.imageDimensions(image).then(function(d) {
    if (d.width / d.height === expectedRatio) {
      defer.resolve()
    } else {
      defer.reject();
    }
  }, function() {defer.reject();});
  return defer.promise;
}

要么

<div ngf-select ngf-model="image" ngf-pattern="'image/*'" ngf-min-height="0" accept="image/*" >
<div ng-show="image.width && (image.width / image.height !== expectedRatio)">Invalid ratio?

编辑功能已添加您可以拥有

<div ngf-select ngf-model="image" ngf-ratio="1x3" ngf-pattern="'image/*'" accept="image/*" > 

上传文件后,是否要为DOM元素分配ID? 如果是这样,纯JS可以像这样工作:

var img = document.getElementById('imageid'); 

var width = img.clientWidth;
var height = img.clientHeight;
    var image = angular.element('<CLASS_NAME or ID_NAME>');
    $scope.width = image.width();
    $scope.height = image.height();

希望对您有帮助!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM