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
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743673256a4488134.html
评论列表(0条)