I am doing a project in which i have to extract the important images from any website. Suppose we have following code :
<img src="/example/example.gif" width="40" height="40" />
From the above code we can easily find the image width and height using Jsoup Library. Now suppose we have following code :
<img src="/example/example.gif"/>
So, Is there any method to find the width and height of image without downloading that file.