I have several images in an HTML document. The width of those elements is often modified due to a max-width
CSS property that is applied to all of them.
I want to know whether it is possible to get both the real width of the .jpeg/.png/.whatever image files and the width that is being shown to the user, this is, I want to be able to know whether the images are being resized due to the max-width property or not.
Resizing the images with JavaScript after the page has loaded instead of using max-width
is not acceptable.