Python图片处理PIL/pillow/生成验证码/出现KeyError: 和The _imagingft C module is not installed

最近在用Python开发自己的博客,需要用到Python生成验证码,当然肯定要用到Python的图形处理库PIL,因为我用的是windows。

所以在安装好pil之后就开始写,就按照题目所说出现了The _imagingft C module is not installed 错误,找了很多建议,最后确定在windows下应该用pillpw。下载地址 点击打开链接 找到 Pillow?2.5.2.win32?py2.7.exe因为我用的是python2.7和win32系统,所以就应该下载这个,大家可以根据自己的需求找到响应的包进行安装, Pillow, 它是对PIL的一些BUG修正后的编译版

到了这里又遇见一个错误,那就是在使用Image.save(‘code.jpg‘,‘jpg‘)的时候会出现KeyError:’jpg‘错误,

看stackoverflow文章 http://stackoverflow.com/questions/21128256/why-does-pillow-not-recognize-the-jpeg-format

受到启发之后只需要把import Image改为 from PIL import Image 就行了

顺便附上一个生产中文验证码的代码

import ImageDraw,ImageFont
from PIL import Image
import random
import math, string  

class RandomChar():

  @staticmethod
  def Unicode():
    val = random.randint(0x4E00, 0x9FBF)
    return unichr(val)  

  @staticmethod
  def GB2312():
    head = random.randint(0xB0, 0xCF)
    body = random.randint(0xA, 0xF)
    tail = random.randint(0, 0xF)
    val = ( head << 8 ) | (body << 4) | tail
    str = "%x" % val
    return str.decode(‘hex‘).decode(‘gb2312‘)  

class ImageChar():
  def __init__(self, fontColor = (0, 0, 0),
                     size = (100, 40),
                     fontPath = ‘simsun.ttc‘,
                     bgColor = (255, 255, 255),
                     fontSize = 20):
    self.size = size
    self.fontPath = fontPath
    self.bgColor = bgColor
    self.fontSize = fontSize
    self.fontColor = fontColor
    self.font = ImageFont.truetype(self.fontPath, self.fontSize)
    self.image = Image.new(‘RGB‘, size, bgColor)  

  def rotate(self):
    self.image.rotate(random.randint(0, 30), expand=0)  

  def drawText(self, pos, txt, fill):
    draw = ImageDraw.Draw(self.image)
    draw.text(pos, txt, font=self.font, fill=fill)
    del draw  

  def randRGB(self):
    return (random.randint(0, 255),
           random.randint(0, 255),
           random.randint(0, 255))  

  def randPoint(self):
    (width, height) = self.size
    return (random.randint(0, width), random.randint(0, height))  

  def randLine(self, num):
    draw = ImageDraw.Draw(self.image)
    for i in range(0, num):
      draw.line([self.randPoint(), self.randPoint()], self.randRGB())
    del draw  

  def randChinese(self, num):
    gap = 5
    start = 0
    for i in range(0, num):
      char = RandomChar().GB2312()
      x = start + self.fontSize * i + random.randint(0, gap) + gap * i
      self.drawText((x, random.randint(-5, 5)), RandomChar().GB2312(), self.randRGB())
      self.rotate()
    self.randLine(18)  

  def save(self, path):
    self.image.save(path,‘jpeg‘)
if __name__==‘__main__‘:
  ic = ImageChar(fontColor=(100,211, 90))
  ic.randChinese(4)
  ic.save("1.jpeg")
时间: 2024-12-15 19:45:26

Python图片处理PIL/pillow/生成验证码/出现KeyError: 和The _imagingft C module is not installed的相关文章

Python: The _imagingft C module is not installed错误的解决

Python: The _imagingft C module is not installed错误的解决 在使用PIL模块给图片添加文本时发现调用字体时出现 The _imagingft C module is not installed 错误. 找到的原因是:官网的PIL版本编译的时候缺少东西(PIL was compiled without libfreetype). 解决办法是: brew install freetype sudo pip uninstall pil sudo pip

centos下安装pillow报ImportError: The _imagingft C module is not installed的解决方案

centos系统,使用pip安装pillow,运行时出现ImportError错误"The _imagingft C module is not installed"具体出错的那行代码是font = ImageFont.truetype('Arial.ttf', 36) 解决过程如下: 先确保代码中导入语句是: from PIL import ImageFont 尝试先卸载pillow: pip uninstall pillow 安装系统devel包: sudo yum install

python的random模块(生成验证码)

python的random模块(生成验证码) random模块常用方法 random.random() #生成0到1之间的随机数,没有参数,float类型 random.randint(1, 3) #生成参数1到参数2之间的随机数,输出为int类型,[1,3] random.randrange(1, 3) #生成参数1到参数2之间的随机数,输出为int类型,[1,3),这个方法还有一种用法,就是下面介绍的这种 random.randrange(0,100,2) #从指定范围内,按指定基数递增的集

Python Show-Me-the-Code 第 0010 题 生成验证码图片

第 0010 题:使用 Python 生成类似于下图中的字母验证码图片 阅读资料 思路:先随机生成验证码,然后用Python的PIL库画出这个激活码的图片,具体点就是创建画布,加验证码的字上去,增加噪点进行干扰,再进行模糊处理,接着保存到名字为验证码的图片中. 0010.生成验证码图片.py #!/usr/bin/env python #coding: utf-8 import Image, ImageDraw, ImageFont, ImageFilter import string, ran

解决PIL “decoder jpeg not available” 和 “ImportError: The _imaging C module is not installed”的问题

在python安装Image后发现只要加载ImageFont就出现 The _imaging C module is not installed  的提示,经百度谷歌搜索后.发现WIN系统的人都会使用网上已经编译好的一个包.而LINUX下回答都很模糊. 基本如下处理即可(CENTOS 5 64bit) yum install libjpeg libjpeg-devel zlib zlib-devel freetype freetype-devel lcms lcms-devel 以上安装基本环境

python使用PIL模块生成验证码

import Image, ImageDraw, ImageFont, ImageFilter import random # 随机字母 def rndChar(): return chr(random.randint(65, 90)) # 随机颜色1 def rndColor(): return (random.randint(64, 255), random.randint(64, 255), random.randint(64, 255)) # 随机颜色2 def rndColor2():

Python学习心得(五) random生成验证码、MD5加密、pickle与json的序列化和反序列化

# -*- coding:utf-8 -*- import random as rd #验证码 import hashlib as hsl #MD5加密 import pickle,json #pickle与json序列化 #print rd.randint(1,5) #print help(range) #print help(rd.randint) #随机生成6位验证码: code = [] for i in range(1,7): if i == rd.randint(1,6): code

Python生成验证码

获取随机字符串 引入PIL包,生成画布. 创建字体,需要使用imagefont.truetype 获取随机背景颜色和字体颜色 将文字写入图像中去 保存图片 代码如下: import random import Image,ImageFilter import ImageFont import ImageDraw #获取随机字符串 def getchar(len=6): #新建元组存储获得的字符串 codelist=[] for i in range(10):#获取数字 codelist.appe

python模块之PIL模块(生成随机验证码图片)

PIL简介 什么是PIL PIL:是Python Image Library的缩写,图像处理的模块.主要的类包括Image,ImageFont,ImageDraw,ImageFilter PIL的导入 首先需要安装一下pillow包 pip install pillow 然后就可以调用PIL里的类了 from PIL import Image from PIL import ImageFont from PIL import ImageDraw from PIL import ImageFilt