I am using JSOUP to extract some information from given URL. My target is to get all image URL that are having minimum width W and min height H.
The problem is many site just use src
but no height
and width
attribute. SO the only solution that i found was to use BufferedImage
to get the image height and width of image but I think its not good choice if you have huge number of image
Is there some other way to get image height and width without creating the image first.