今天在Python运行环境的服务器弄一个有关图像处理的程序时报这样的错:
1 |
NameError: global name 'Image' is not defined |
import Image 了下,发现原来 Python 并没有自带图像处理库,需要独立安装……查了下,Python常用的图像处理库叫PIL,可以使用 pip 安装,不错~于是在 用virtualenv 里敲入 pip install PIL。
安装很快完成,于是愉悦地刷新,等待程序的通过,结果又报错:
1 |
IOError: decoder jpeg not available |
Google了下,发现通过 pip 安装的 PIL 不会安装 jpeg 的解码器……检查了下安装日志,也有这样的说明:
01 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
02 |
PIL 1.1 . 7 SETUP SUMMARY |
03 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
05 |
platform linux2 2.7 . 5 (default, Sep 18 2013 , 09 : 53 : 07 ) |
06 |
[GCC 4.1 . 2 20080704 (Red Hat 4.1 . 2 - 54 )] |
07 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
08 |
* * * TKINTER support not available |
09 |
* * * JPEG support not available |
10 |
* * * ZLIB (PNG / ZIP ) support not available |
11 |
* * * FREETYPE2 support not available |
12 |
* * * LITTLECMS support not available |
13 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
14 |
To add a missing option, make sure you have the required |
15 |
library, and set the corresponding ROOT variable in the |
JPEG support not available…… jpg都不支持,这是闹哪样……
于是只得手动安装了:
1 |
wget http: / / effbot.org / downloads / Imaging - 1.1 . 7.tar .gz |
2 |
tar xvfz Imaging - 1.1 . 7.tar .gz |
下载并解压成功之后,到解压目录,找到 Imaging-1.1.7/setup.py 这个文件,修改下面几行代码(默认TCL_ROOT的设置为NONE,这里要传到系统库的路径才行):
1 |
TCL_ROOT = "/usr/lib64/" |
2 |
JPEG_ROOT = "/usr/lib64/" |
3 |
ZLIB_ROOT = "/usr/lib64/" |
4 |
TIFF_ROOT = "/usr/lib64/" |
5 |
FREETYPE_ROOT = "/usr/lib64/" |
6 |
LCMS_ROOT = "/usr/lib64/" |
再进行安装前的检查:
1 |
python / root / nowamagic_venv / Imaging - 1.1 . 7 / setup.py build_ext - i |
检查没问题,可以执行安装了:
1 |
python / root / nowamagic_venv / Imaging - 1.1 . 7 / setup.py install |
安装成功:
01 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
02 |
PIL 1.1 . 7 SETUP SUMMARY |
03 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
05 |
platform linux2 2.7 . 5 (default, Sep 18 2013 , 09 : 53 : 07 ) |
06 |
[GCC 4.1 . 2 20080704 (Red Hat 4.1 . 2 - 54 )] |
07 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
08 |
* * * TKINTER support not available |
09 |
- - - JPEG support available |
10 |
- - - ZLIB (PNG / ZIP ) support available |
11 |
- - - FREETYPE2 support available |
12 |
* * * LITTLECMS support not available |
13 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
现在 jpg 已经被支持了,程序也执行成功,这里简单记录一下过程,方便后来者。顺便附带测试程序,用 Tornado 上传图片并生成缩略图:
05 |
class AsciiImageProcessHandler(tornado.web.RequestHandler): |
08 |
if self .request.files: |
09 |
for f in self .request.files[ 'image' ]: |
10 |
rawname = f[ 'filename' ] |
11 |
dstname = str ( int (time.time())) + '.' + rawname.split( '.' ).pop() |
12 |
thbname = "thumb_" + dstname |
16 |
tf = tempfile.NamedTemporaryFile() |
21 |
# img = Image.open(src) |
22 |
img = Image. open (tf.name) |
23 |
img.thumbnail(( 920 , 920 ),resample = 1 ) |
24 |
img.save( "./static/upload/asciiimg/" + dstname) |
27 |
img.thumbnail(( 100 , 100 ),resample = 1 ) |
28 |
img.save( "./static/upload/asciiimg_tn/" + thbname) |
- ubuntu14.04 安装PIL库出现OError: decoder jpeg not available 的解决方案
出现 OError: decoder jpeg not available 的原因是,没有装JPEG的库,同时要支持png图片的话还要装 ZLIB.FREETYPE2.LITTLECMS的库文件. 先 ...
- Python PIL : IOError: decoder jpeg not available
The first thing I check when I got this error was to check if libjpeg was installed. Lets try this s ...
- exceptions.IOError: decoder jpeg not available
1.确保安装PIL所需的系统库 yum -y install zlib yum -y install zlib-devel yum -y install libjpeg yum -y install ...
- Python 读文件:IOError: [Errno 0] Error
Windows系统下,这种情况发生在读取文件,再写入过程中出现. 原因是读完文件后python不知道当前文件位置在哪里. 方法一是:在关闭文件前只做读或者写一种操作. 方法二是:在写入文件前使用fil ...
- Python,PIL压缩裁剪图片
自己写了用来压缩 DC 照片的,批量处理整目录文件,非常方便.需要安装 PIL #!/usr/bin/env python import Image import os import os.path ...
- Python图像处理库:PIL中Image,ImageDraw等基本模块介绍
Python图像处理库:PIL中Image,ImageDraw等基本模块介绍 标签: 图像处理PILPYTHON 2016-08-19 10:58 461人阅读 评论(0) 收藏 举报 分类: 其他 ...
- Python:IOError: image file is truncated 的解决办法
代码如下: #coding:utf-8 from PIL import Image import pytesseract def test(): im = Image.open(r"pic. ...
- Python图像处理库:Pillow 初级教程
Python图像处理库:Pillow 初级教程 2014-09-14 翻译 http://pillow.readthedocs.org/en/latest/handbook/tutorial.html ...
- python PIL 图像处理操作
python PIL 图像处理 # 导入Image库 import Image # 读取图片 im = Image.open("1234.jpg") # 显示图片 im.show( ...
随机推荐
- XtraReport交叉表隐藏列标题及自定义排序
1.隐藏列标题 用DevExpress PivotGrid report 做报表的时候,将字段拖放到报表中后,ColumnArea和DataArea会显示两个标题字段,如下图: 选中交叉表,设置以下属 ...
- Spring Data MongoDB example with Spring MVC 3.2
Spring Data MongoDB example with Spring MVC 3.2 Here is another example web application built with S ...
- bootstrapUI
http://www.tinygroup.org/tinyadmin/#ajax/dashboard.pagelet
- IDLHDF5读取与转换
需求决定了动力,此时近凌晨一点,忙里偷闲,终于忙完了今天的“这点儿”事儿.参考帮助文档,从hdf的读写,捉摸hdf5的读写,总算弄明白了.稍作总结,以备候查. hdf5作为hdf数据的补充与升级,目前 ...
- MyTask1
从去年10月份开始着手的一个小项目,啊喂~人家更笨就没学过.net好不,都是现学现卖的丫~~~23333,好了好了,下面进入正题: 陆陆续续做了很长时间(其实也就是这两天兴趣说来就来,许久没码代码手痒 ...
- HTML5 ArrayBufferView之DataView
DataView视图 如果一段数据包括多种类型(比如服务器传来的HTTP数据),这时除了建立ArrayBuffer对象的复合视图以外,还可以通过DataView视图进行操作. DataView视图提供 ...
- ResultSetMetaData rsmd = rs.getMetaData()是什么意思?
ResultSetMetaData rsmt=rs.getMetaData(); 得到结果集(rs)的结构,比如字段数.字段名等.使用rs.getMetaData().getTableName(1)) ...
- power desinger 学习笔记<四>
Tools <display preferences> <content table> <advanced> Columns 选择放大镜图标 进入窗口 选择要顺序显 ...
- [转]PHP echo, print, printf, sprintf函数的区别和使用
1. echo函数: 输出函数,是命令,不能返回值.echo后面可以跟很多个参数,之间用分号隔开,如: echo $myvar1; echo 1,2,$myvar,"<b>bol ...
- 浅析angular框架的cookie
相信接触过网页编程的基本上都知道cookie这个东西吧,一个毫不起眼,但是又十分的重要的东西,今天我们就来分析一下这个小东西,我们都知道客服端通过发送http请求到服务器请求我们的数据,当我们的服务器 ...