首页 > 编程 > Python > 正文

Python实现获取本地及远程图片大小的方法示例

2020-01-04 14:42:41
字体:
来源:转载
供稿:网友

本文实例讲述了Python实现获取本地及远程图片大小的方法。分享给大家供大家参考,具体如下:

了解过Pillow的都知道,Pillow是一个非常强大的图片处理器,这篇文章主要记录一下Pillow对图片信息的获取:

安装Pillow

pip install pillow

本地图片

# -*- coding:utf-8 -*-#! python2import osfrom PIL import Imagepath = os.path.join(os.getcwd(),"23.png")img = Image.open(path)print img.format    # PNGprint img.size     # (3500, 3500)

远程图片

# -*- coding:utf-8 -*-#! python2import urllib2import cStringIOfrom PIL import Imagepath = "http://h.hiphotos.baidu.com/image/pic/item/c8ea15ce36d3d5397966ba5b3187e950342ab0cb.jpg"file = urllib2.urlopen(path)tmpIm = cStringIO.StringIO(file.read())img = Image.open(tmpIm)print img.format     # JPEGprint img.size      # (801, 1200)

运行结果如下图:

Python,远程图片

希望本文所述对大家Python程序设计有所帮助。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表