我使用以下方法从URL获取图像大小:
const img = new Image();
img.onload = () => {
const imageSize = {
x: img.width,
y: img.height
};
resolve(imageSize);
};
img.src = imageUrl;
基本上,它将加载整个图像并确定其大小。我不知道还有其他方法可以下载完整图像而不下载它。我可以加载标题以读取图像的大小吗?