Looking to verify the dimensions of an image link, specifically if it is 1000px x 1000px and in jpg format.
For example:
https://www.w3schools.com/bootstrap/paris.jpg
I have this link and need to extract the width and height of the image.
Determining the jpg format should be straightforward, I can simply check the file extension. However, I'm unsure how to fetch the image size in angular.
Any suggestions or insights on how to accomplish this task? Thank you.