Tom Cameron writes: > File "PIL/Image.py", line 259, in _getencoder > raise IOError, "encoder %s not available" % encoder_name > IOError: encoder jpeg not available > >>> Look in "PIL/Image.py" near line 259 what it tries to get the encoder. Do it yourself in an interactive interpreter. The exception will probably give you a hint towards the actual problem. Dieter