我想在不下载的情况下获得图像大小,可以吗?
图像1网址:https://koctas-img.mncdn.com/mnresize/600/600/productimages/1000599303/1000599303_1_MC/8843182866482_1663925809606.jpg
def parse_product(self, response):
images = response.css(".swiper-slide::attr(data-large)").getall()
image1 = images[0]
image_size=yield Request(image1, method="HEAD", callback=self.callback)
1条答案
按热度按时间k5ifujac1#
您可以使用HEAD方法。
输出: