Konwertuj pliki obrazów TIF na .jpeg w Python

from PIL import Image
im = Image.open('test.tiff')
im.save('test.jpeg')
Darkstar