<-cut pytiff->
[color=blue]
> (or alternatively tell me how to get PIL to save a multipage tiff).
>[/color]
PIL can't.
If you need to work with multi-page images (tiff and others), you can
use freeimagepy (freeimagepy.sf .net)
[color=blue][color=green][color=darkred]
>>> import FreeImagePy as FIPY lst_names = ("/tmp/f1.png",
>>> "/tmp/f2.jpg") F = FIPY.freeimage( )
>>> F.convertToMult iPage(lst_names , "out.tif", FIPY.FIF_TIFF)[/color][/color][/color]
(0, 'All ok!! File saved on out.tif')
Comment