博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PIL写入字体出现“ImportError: The _imagingft C module is not installed”的解决方法
阅读量:5309 次
发布时间:2019-06-14

本文共 780 字,大约阅读时间需要 2 分钟。

  使用Python的PIL库实现字符写入到图片的过程中,调用ImageFont.truetype()方法时,编译报错:“ImportError: The _imagingft C module is not installed”

  在找到了解决方法,原因是easy-install安装的PIL版本编译的时候缺少了一些东西,解决方法是先卸载PIL,安装完freetype等相关组件之后再安装即可。

原文解答摘录如下: 

The most important lines for you are:

Install libjpeg (PIL req)

curl -O http://www.ijg.org/files/jpegsrc.v8c.tar.gz tar -xvzf jpegsrc.v8c.tar.gz cd jpeg-8c ./configure make sudo make install cd ../

Install freetype (more PIL requirements)

curl -O http://ftp.igh.cnrs.fr/pub/nongnu/freetype/freetype-2.4.5.tar.gz tar -xvzf freetype-2.4.5.tar.gz cd freetype-2.4.5 ./configure make sudo make install cd ../

Install PIL (usually in the requirements.txt so I don't have it in the above linked instruction)

pip install PIL

转载于:https://www.cnblogs.com/007wangkai/p/4362805.html

你可能感兴趣的文章
Python3 高阶函数
查看>>
初始面向对象
查看>>
docker一键安装
查看>>
leetcode Letter Combinations of a Phone Number
查看>>
Unity 5.4 测试版本新特性---因吹丝停
查看>>
7.5 文件操作
查看>>
DFS-hdu-2821-Pusher
查看>>
MyEclipse中将普通Java项目convert(转化)为Maven项目
查看>>
node js 安装.node-gyp/8.9.4 权限 无法访问
查看>>
windows基本命令
查看>>
VMware中CentOS设置静态IP
查看>>
[poj1006]Biorhythms
查看>>
jsp
查看>>
Hyper-V虚拟机上安装一个图形界面的Linux系统
查看>>
Hover功能
查看>>
js千分位处理
查看>>
Mac---------三指拖移
查看>>
关于VMare中安装Ubuntu的一些说明
查看>>
字符串类型的相互转换
查看>>
HTTP状态码
查看>>