requests获取图片的宽和高
Posted 叶落kiss
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了requests获取图片的宽和高相关的知识,希望对你有一定的参考价值。
try:
if cover:
resp = requests.get(‘%s?x-oss-process=image/info‘ % (url), timeout=30)
if resp.status_code == 200:
rj = resp.json()
article_data[‘c_h‘] = float(rj[‘ImageHeight‘][‘value‘])
article_data[‘c_w‘] = float(rj[‘ImageWidth‘][‘value‘])
except Exception as e:
logger.info(e)
以上是关于requests获取图片的宽和高的主要内容,如果未能解决你的问题,请参考以下文章