The Python Imaging Library
  Copyright © 1997 by Fredrik Lundh <fredrik@pythonware.com>  
  Updated 17 Aug 1997  

< The ImageEnhance Module | The ImageFilter Module | The ImageFont Module >

The ImageFilter module

This module contains definitions for the pre-defined set of filters, for use with the filter method in the Image class.

Example

import ImageFilter

imout = im.filter(ImageFilter.BLUR)

Filters

The following set of image enhancement filters are provided in this version of the library:

Filter Description
BLUR  
CONTOUR  
DETAIL  
EDGE_ENHANCE  
EDGE_ENHANCE_MORE  
EMBOSS  
FIND_EDGES  
SMOOTH  
SMOOTH_MORE  
SHARPEN  

< The ImageEnhance Module | The ImageFilter Module | The ImageFont Module >