我正在使用Jsoup来获取网页的图像。
以下是我的代码:
private String getImage(Document doc) {
Elements images = doc.select("img[src~=(?i)\\.(png|jpe?g|gif)]");
String imgUrl = "";
for (Element image : images) {
imgUrl = image.attr("abs:src");
break;
}
return imgUrl;
}
这里我得到第一张图片,但我需要页面中有最大高度或最大宽度的图片。
我无法使用attr(" height"),因为大多数图片都没有高度和宽度属性。
任何人都可以帮助我如何计算没有属性高度和宽度的图像的高度和宽度?
由于