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
Add a ment  | 

1 Answer 1

Reset to default 12

Give 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