How can I find the Base64 image width and height?
<img id="thumb0" width="200" height="200"
src="data:image/png;base64, ................">
The image properties width and height are constant as I need to show them as a thumbnail, but whereas the original image properties are different.
I need to get the original image height and width.
Suppose my original image height and width are 750 X 500 pixels.
I tried like this, but I am getting the property width and height:
$("#thumb0").width();
The value is 200.
How can I get the original width and height of the image?