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获取图片的宽和高的主要内容,如果未能解决你的问题,请参考以下文章

Android中获取图片的宽和高

C语言中怎样获得jpg图片的宽和高?

Android获取控件的宽和高

使用js如何设置获取盒模型的宽和高

JS获取元素的宽和高的几种方法

js如何获取图片的高和宽?根据我的部分代码添加完善,谢谢!