python 图像处理(从安装Pillow开始)

python2.x及以下用的是PIL(图像处理库是 PIL(Python Image Library)),最新版本是 1.1.7  可在http://www.pythonware.com/products/pil/index.htm 下载和学习。

不过从该网站可看出它不支持python3.x

Pillow由PIL而来(支持3.x),所以该导入该库使用import PIL

由于本人用的是python 3.4 所以下载的Pillow

关于下载第三方库,有三种方法,之前用的都是

第一种方法

  1 下载第三方包,解压

  2 在命令提示符里输入cmd,然后用cd进入到第三方包的路径下

  3 输入python setup.py build

  4 输入python setup.py install

效率低下

故这次打算安装pip和easy_installer工具,通过代码就可以安装,

安装可参考:http://heipark.iteye.com/blog/1916758 或者http://blog.chinaunix.net/uid-12014716-id-3859827.html(内有官网地址)

除此之外在相应的官网也提供详细的安装教程(Mac OS的话真是快很多)

easy_installer简便安装:

Windows (simplified) (官网说明)

For Windows without PowerShell 3 or for installation without a command-line, download ez_setup.py using your preferred web browser or other technique and “run” that file.

保存本地后运行就在安装了,

pip安装 法1:下载解压,cd切换到pip的目录,找到setup.py文件,然后输入python setup.py install

最后显示

Installed d:\python34\lib\site-packages\pip-7.1.2
Processing dependencies for pip==7.1.2
Finished processing dependencies for pip==7.1.2

法2(推荐):安装完easy_install 后就可以执行这样的命令了

C:\Users\Administrator>easy_install pip
Searching for pip
Best match: pip 7.1.2
Processing pip-7.1.2-py3.4.egg
pip 7.1.2 is already the active version in easy-install.pth
Installing pip-script.py script to D:\python34\Scripts
Installing pip.exe script to D:\python34\Scripts
Installing pip.exe.manifest script to D:\python34\Scripts
Installing pip3-script.py script to D:\python34\Scripts
Installing pip3.exe script to D:\python34\Scripts
Installing pip3.exe.manifest script to D:\python34\Scripts
Installing pip3.4-script.py script to D:\python34\Scripts
Installing pip3.4.exe script to D:\python34\Scripts
Installing pip3.4.exe.manifest script to D:\python34\Scripts

Using d:\python34\lib\site-packages\pip-7.1.2-py3.4.egg
Processing dependencies for pip
Finished processing dependencies for pip

那么接下来就是pip的使用(可参考http://www.th7.cn/Program/Python/201410/289949.shtml)

C:\Users\Administrator>pip install Pillow
Collecting Pillow
  Downloading Pillow-2.9.0-cp34-none-win32.whl (1.2MB)
    100% |████████████████████████████████|
Installing collected packages: Pillow
Successfully installed Pillow-2.9.0

那么pillow就安装成功了

在Pillow的官网教程也有教程http://pillow.readthedocs.org/installation.html 多种安装方式可参考

接下来

C:\Users\Administrator>python
Python 3.4.2 (v3.4.2:ab2c023a9
Type "help", "copyright", "cre
>>> 2
2
>>> from PIL import Image
>>>

没报错,说明安装成功

接下来可在http://pillow.readthedocs.org/index.html开始学习,或参考他人blog 后面将继续出图像处理的例子~

时间: 2025-01-07 09:46:29

python 图像处理(从安装Pillow开始)的相关文章

Windows下Python中pip安装Pillow报错总结(转载)

遇到的俩种错误1.ValueError: zlib is required unless explicitly disabled using --disable-zlib, aborting 问题原因未知,博主尝试了一下解决方案可以解决问题.博主PC  是 Pthon3.4.3-win32pip install --upgrade pip 在cmd中更新一下pip,然后发现出现了第二个问题,权限问题,给用户添加所有者权限后,再次执行 pip install Pillow  完美安装Pillow

Python验证码识别 安装Pillow、tesseract-ocr与pytesseract模块的安装以及错误解决

1.安装Pillow pip install Pillow 2.安装tesseract-ocr github地址: https://github.com/tesseract-ocr/tesseract You can either Install Tesseract via pre-built binary package or build it from source. windows: The latest installer can be downloaded here: tesserac

Python图像处理库:Pillow 初级教程

2014-09-14 翻译 http://pillow.readthedocs.org/en/latest/handbook/tutorial.html Pillow由PIL而来,所以该导入该库使用import PIL 本文相关的代码:https://github.com/445141126/pillow_example Image类 Pillow中最重要的类就是Image,该类存在于同名的模块中.可以通过以下几种方式实例化:从文件中读取图片,处理其他图片得到,或者直接创建一个图片. 使用Ima

图像处理基本工具——Python 环境下的 Pillow( PIL )

由于笔者近期的研究课题与图像后处理有关,需要通过图像处理工具对图像进行变换和处理,进而生成合适的训练图像数据.该系列文章即主要记录笔者在不同的环境下进行图像处理时常用的工具和库.在 Python 环境下,对图像的处理笔者主要使用 Pillow 库,主要操作包括对图像的读取.存储和变换等.实际应用中,Pillow 中提供的 Image 模块适合对图像整体进行变换处理操作. 注:以下介绍仅包括对应模块和函数的基础用法,故而在介绍时省略了部分参数和选项,更完备的用法和介绍可参考 Pillow 的官方文

python安装pillow模块错误

安装的一些简单步骤就不介绍了,可以去搜索一下,主要就记录下我在安装pillow这一模块遇到的问题 1:安装好pillow后,安装过程没有出错 2:但是在python的IDLE输入from PIL import Image出错 原因:pillow版本与python不兼容 安装是应该注意自己的python版本和安装了多少位的pyhton pillow 4.0 对应 python3.6.0 pillow 4.1 对应 python3.6.1

python 安装pillow

安装 警告 Pillow >= 2.1.0 不支持 “import _imaging”.请使用 “from PIL.Image import core as _imaging” 代替. 警告 Pillow >= 1.0 不支持 “import Image”. 请使用 “from PIL import Image” 代替. 警告 PIL 和 Pillow 现在不能共存. 如果你想使用 Pillow, 请首先移除 PIL . 注解 Pillow >= 2.0.0 支持 Python 版本 2

[Python]Windows系统下安装Pillow模块

Pillow模块提供了丰富的图像处理功能,并且很多其它模块使用到该模块. 安装Pillow模块.使用以下命令: pip install Pillow 2. 使用举例 #导入Image from PIL import Image #打开图片 img = Image.open("d:\\qr.png") #显示图片 img.show() 3. 详细教程请参考:https://pillow.readthedocs.io/en/5.1.x/handbook/index.html 原文地址:ht

(linux / win)怎样安装Pillow和PIL-Pillow兼容包?

PIL(Python Imaging Library)是Python常用的图像处理库,而Pillow是PIL的一个友好Fork,提供了了广泛的文件格式支持,强大的图像处理能力,主要包括图像储存.图像显示.格式转换以及基本的图像处理操作等. Pillow的文档:http://pillow.readthedocs.io/en/latest/ Pillow的github:https://github.com/python-pillow/Pillow --------------------------

图像处理标准库pillow

pillow模块 PIL:Python Imaging Library,已经是Python平台事实上的图像处理标准库了.PIL功能非常强大,但API却非常简单易用. 由于PIL仅支持到Python 2.7,加上年久失修,于是一群志愿者在PIL的基础上创建了兼容的版本,名字叫Pillow,支持最新Python 3.x,又加入了许多新特性,因此,我们可以直接安装使用Pillow. 安装pillow pycharm安装 命令行安装 Python中引入 from PIL import Image #生成