http://www.pythonware.com/products/pil/
The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. This library supports many file formats, and provides powerful image processing and graphics capabilities.
从源码安装,出错:
……
copying PIL\TiffImagePlugin.py -> build\lib.win-amd64-2.7
copying PIL\TiffTags.py -> build\lib.win-amd64-2.7
copying PIL\WalImageFile.py -> build\lib.win-amd64-2.7
copying PIL\WmfImagePlugin.py -> build\lib.win-amd64-2.7
copying PIL\XbmImagePlugin.py -> build\lib.win-amd64-2.7
copying PIL\XpmImagePlugin.py -> build\lib.win-amd64-2.7
copying PIL\XVThumbImagePlugin.py -> build\lib.win-amd64-2.7
copying PIL\__init__.py -> build\lib.win-amd64-2.7
running build_ext
--- using Tcl/Tk libraries at C:\python27\Tcl
--- using Tcl/Tk version 8.5
building '_imaging' extension
error: Unable to find vcvarsall.bat
解决办法:
1、首先安装MinGW,在MinGW的安装目录下找到bin的文件夹,找到mingw32-make.exe,复制一份更名为make.exe;
2、把MinGW的路径添加到环境变量path中;
3、打开命令行窗口,在命令行窗口中进入到要安装代码的目录下;
4、输入如下命令就可以安装了。
setup.py install build --compiler=mingw32
分享到:
相关推荐
描述Python影像库,该库向Python解释器添加了图像处理功能。
### Python 图像处理库指南:Python Imaging Library (PIL) #### 一、引言 Python Imaging Library(简称PIL)是Python编程语言中一个强大的图像处理库,它为用户提供了一系列的功能来创建、修改以及转换各种格式...
Python Imaging Library (PIL) 是一个用于处理图像的Python库,中文手册提供了详细的API文档和概念解释,方便用户理解和操作图像。以下是一些关键知识点的概述: 1. **Image类**: - `Image.open()`:用于打开图像...
Python Imaging Library v1.1.7图库资源安装包,解压后直接打开安装上就能使用了。python的图片处理支持库,安装本库后能够对图片进行各种捷操作,如修改图片格式,调节颜色,旋转或自定义图片大小等。
一个简单的图像处理脚本示例,它使用Python的PIL(Python Imaging Library,也称为Pillow)库来进行基本的图像处理操作,如读取图像、转换为灰度图、调整大小、保存图像等。 在运行此脚本之前,请确保你已经安装了...
Python-Imaging-Library中文手册、PIL中文手册、python图像处理
Python Imaging Library (Fork)
很好的快速入门简介PPT,只讲抓重点,初学可以学习学习
Python Imaging Library中文手册、PIL中文手册、python图像处理
In this book, author Fredrik Lundh, creator of the Python Imaging Library (PIL), delivers tested, accurate documentation of all the modules in the Python Standard Library, along with over 300 ...
此代码使用 Python Imaging Library(PIL) 模块实现空间域数字水印 该代码采用图像输入,该图像已命名为“1.jpg”。当您运行此代码时,在保存代码的文件夹中保留一个名为“1.jpg”的图像,它将生成一个新的图像“2....
如果您曾经对Python的Imaging Library的未来感到好奇或担心,那么该停止了。 枕头在这里回答您的问题,并为您提供更多。 Pillow是Python Imaging Library或PIL的友好分支,该库为Python解释器添加了图像处理功能。 ...
由于生成 qrcode 图片需要依赖 Python 的图像库,所以需要先安装 Python 图像库 PIL(Python Imaging Library),不然会遇到 “ImportError: No module named Image” 的错误: 复制代码 代码如下: sudo
4. 安装Python Imaging Library(PIL)以及PyCrypto。PyCrypto提供了SSH仓库支持,其下载链接为***。 5. 按照文章提供的步骤从***下载并安装Memcached for Windows,然后进行安装和启动服务。 6. 使用easy_install...
- **PIL**:说明如何安装Python Imaging Library。 - **LibSVM**:介绍LibSVM库的安装过程。 - **OpenCV**:指导如何安装OpenCV。 - **VLFeat**:介绍VLFeat库的安装方法。 - **其他库**:包括PyGame、PyOpenGL...
- **图像处理库**:PIL(Python Imaging Library)是用于处理图像的标准库之一,但由于维护问题,推荐使用其分支Pillow。 - **安装方法**:直接运行预先下载的可执行文件(如Pillow-2.7.0.win-amd64-py2.7.exe)...
接下来,我们需要安装Python Imaging Library (PIL),它是Python中用于处理图像的标准库。PIL提供了打开、修改和保存许多不同图像文件格式的功能。你可以通过Python的包管理器pip来安装PIL,命令通常为 `pip install...