PIL doesn\'t natively support G4 images, is there some other python package that does? I need to read multi-page TIFF images and pull convert them into gif/png on the fly t
Using PythonMagick:
from PythonMagick import Image Image('CCITT_4.TIF[0]').write("PNG8:CCITT_4.PNG")