python使用PIL缩放网络图片并保存的方法


Posted in Python onApril 24, 2015

本文实例讲述了python使用PIL缩放网络图片并保存的方法。分享给大家供大家参考。具体实现方法如下:

''' tk_image_view_url_io_resize.py
display an image from a URL using Tkinter, PIL and data_stream
also resize the web image to fit a certain size display widget
retaining its aspect ratio
Pil facilitates resizing and allows file formats other then gif
tested with Python27 and Python33 by vegaseat 18mar2013
'''
import io
from PIL import Image, ImageTk
try:
  # Python2
  import Tkinter as tk
  from urllib2 import urlopen
except ImportError:
  # Python3
  import tkinter as tk
  from urllib.request import urlopen
def resize(w, h, w_box, h_box, pil_image):
  '''
  resize a pil_image object so it will fit into
  a box of size w_box times h_box, but retain aspect ratio
  '''
  f1 = 1.0*w_box/w # 1.0 forces float division in Python2
  f2 = 1.0*h_box/h
  factor = min([f1, f2])
  #print(f1, f2, factor) # test
  # use best down-sizing filter
  width = int(w*factor)
  height = int(h*factor)
  return pil_image.resize((width, height), Image.ANTIALIAS)
root = tk.Tk()
# size of image display box you want
w_box = 400
h_box = 350
# find yourself a picture on an internet web page you like
# (right click on the picture, under properties copy the address)
# a larger (1600 x 1200) picture from the internet
# url name is long, so split it
url1 = "http://freeflowerpictures.net/image/flowers/petunia/"
url2 = "petunia-flower.jpg"
url = url1 + url2
image_bytes = urlopen(url).read()
# internal data file
data_stream = io.BytesIO(image_bytes)
# open as a PIL image object
pil_image = Image.open(data_stream)
# get the size of the image
w, h = pil_image.size
# resize the image so it retains its aspect ration
# but fits into the specified display box
pil_image_resized = resize(w, h, w_box, h_box, pil_image)
# optionally show resized image info ...
# get the size of the resized image
wr, hr = pil_image_resized.size
# split off image file name
fname = url.split('/')[-1]
sf = "resized {} ({}x{})".format(fname, wr, hr)
root.title(sf)
# convert PIL image object to Tkinter PhotoImage object
tk_image = ImageTk.PhotoImage(pil_image_resized)
# put the image on a widget the size of the specified display box
label = tk.Label(root, image=tk_image, width=w_box, height=h_box)
label.pack(padx=5, pady=5)
root.mainloop()

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

Python 相关文章推荐
Python Web服务器Tornado使用小结
May 06 Python
9种python web 程序的部署方式小结
Jun 30 Python
python实现ping的方法
Jul 06 Python
用python3教你任意Html主内容提取功能
Nov 05 Python
numpy.linspace函数具体使用详解
May 27 Python
浅谈Python中函数的定义及其调用方法
Jul 19 Python
决策树剪枝算法的python实现方法详解
Sep 18 Python
selenium+Chrome滑动验证码破解二(某某网站)
Dec 17 Python
如何基于python实现不邻接植花
May 01 Python
pycharm激活码2020最新分享适用pycharm2020最新版亲测可用
Nov 22 Python
python 获取计算机的网卡信息
Feb 18 Python
详解python网络进程
Jun 15 Python
python使用Tkinter显示网络图片的方法
Apr 24 #Python
Python中最常用的操作列表的几种方法归纳
Apr 24 #Python
在Python中使用lambda高效操作列表的教程
Apr 24 #Python
使用Python的判断语句模拟三目运算
Apr 24 #Python
Python的字典和列表的使用中一些需要注意的地方
Apr 24 #Python
整理Python最基本的操作字典的方法
Apr 24 #Python
编写Python脚本使得web页面上的代码高亮显示
Apr 24 #Python
You might like
ThinkPHP的RBAC(基于角色权限控制)深入解析
2013/06/17 PHP
php二维数组排序详解
2013/11/06 PHP
PHP会话处理的10个函数
2015/08/11 PHP
实例讲解PHP设计模式编程中的简单工厂模式
2016/02/29 PHP
jQuery对象与DOM对象之间的转换方法
2010/04/15 Javascript
js判断样式className同时增加class或删除class
2013/01/30 Javascript
基于JavaScript实现继承机制之构造函数+原型链混合方式的使用详解
2013/05/07 Javascript
求数组最大最小值方法适用于任何数组
2013/08/16 Javascript
jQuery针对各类元素操作基础教程
2014/08/29 Javascript
ZeroClipboard插件实现多浏览器复制功能(支持firefox、chrome、ie6)
2014/08/30 Javascript
javascript表格隔行变色加鼠标移入移出及点击效果的方法
2015/04/10 Javascript
javascript实现全角半角检测的方法
2015/07/23 Javascript
jQuery Mobile和HTML5开发App推广注册页
2016/11/07 Javascript
详解Node.js模板引擎Jade入门
2018/01/19 Javascript
详解Angular调试技巧之报错404(not found)
2018/01/31 Javascript
node.js环境搭建图文详解
2018/09/19 Javascript
基于vue-cli 路由 实现类似tab切换效果(vue 2.0)
2019/05/08 Javascript
弱类型语言javascript中 a,b 的运算实例小结
2019/08/07 Javascript
解决vue一个页面中复用同一个echarts组件的问题
2020/07/19 Javascript
原生js+canvas实现贪吃蛇效果
2020/08/02 Javascript
Django框架中render_to_response()函数的使用方法
2015/07/16 Python
批处理与python代码混合编程的方法
2016/05/19 Python
Python requests库用法实例详解
2018/08/14 Python
用Python实现大文本文件切割的方法
2019/01/12 Python
ActiveMQ:使用Python访问ActiveMQ的方法
2019/01/30 Python
Python3+Appium安装使用教程
2019/07/05 Python
浅析CSS3中鲜为人知的属性:-webkit-tap-highlight-color
2017/01/12 HTML / CSS
次世代生活态度:Hypebeast
2018/07/05 全球购物
环境科学专业研究生求职信
2013/10/02 职场文书
物业保安员岗位职责
2014/03/14 职场文书
《美丽的丹顶鹤》教学反思
2014/04/22 职场文书
十佳青年事迹材料
2014/08/21 职场文书
党员自我评议个人对照检查材料
2014/09/16 职场文书
新手入门Mysql--概念
2021/06/18 MySQL
css如何把元素固定在容器底部的四种方式
2022/06/16 HTML / CSS
Go语言编译原理之变量捕获
2022/08/05 Golang