javascript - Check for image dimensions - Angular 5 - Stack Overflow

I am trying to find out the logo dimensions, since different clients can upload different logos. The HT

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

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743673256a4488134.html

相关推荐

  • javascript - Check for image dimensions - Angular 5 - Stack Overflow

    I am trying to find out the logo dimensions, since different clients can upload different logos. The HT

    23小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信