admin管理员组文章数量:1341401
I am trying to find out the logo dimensions, since different clients can upload different logos. The HTML is like this:
<img [src]="layoutResponseModel?.clientLogo" alt="">
How can I get width and height of this image in Angular 5? Found a few JS examples but couldn't make it work
I am trying to find out the logo dimensions, since different clients can upload different logos. The HTML is like this:
<img [src]="layoutResponseModel?.clientLogo" alt="">
How can I get width and height of this image in Angular 5? Found a few JS examples but couldn't make it work
Share edited Jul 10, 2018 at 8:29 mplungjan 179k28 gold badges182 silver badges240 bronze badges asked Jul 10, 2018 at 8:25 Nemanja GrabovacNemanja Grabovac 8782 gold badges17 silver badges30 bronze badges 1- Post what you tried and tell use how it did not work – mplungjan Commented Jul 10, 2018 at 8:30
1 Answer
Reset to default 12Give your image a template variable a load hook :
<img [src]="layoutResponseModel?.clientLogo" alt="" #logo (load)="onLoad()">
Reference it in your ponent :
@ViewChild('logo') logo: ElementRef;
Write your load hook :
onLoad() {
console.log((this.logo.nativeElement as HTMLImageElement).width);
}
This will give you the width of the displayed image.
Working stackblitz
本文标签: javascriptCheck for image dimensionsAngular 5Stack Overflow
版权声明:本文标题:javascript - Check for image dimensions - Angular 5 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743673255a2519884.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论