format conversion of an image in python

前端 未结 3 660
傲寒
傲寒 2021-02-07 11:40

I have to write an application for image processing in python. does anyone know how to convert the file type of an image from JPEG to TIFF?

相关标签:
3条回答
  • 2021-02-07 12:14

    Use the Python Imaging Library (PIL).

    from PIL import Image
    img = Image.open('image.jpeg')
    img.save('image.tiff')
    

    Ref: http://effbot.org/imagingbook/image.htm

    0 讨论(0)
  • 2021-02-07 12:16

    Check out the Python Image Library (PIL). See this tutorial, the PIL is quite easy to use.

    Supported image formats.

    To do the conversion you open the image and then save it with the new extension (which PIL uses to determine what format to use for saving).

    import Image
    im = Image.open('test.jpg')
    im.save('test.tiff')  # or 'test.tif'
    

    Note that the official distribution does not support Python 3.x (yet?), however, at least under Windows there's an unofficial version available that works with v 3.x.

    0 讨论(0)
  • 2021-02-07 12:30

    Did you try to use PIL ? It can support many image file format.

    0 讨论(0)
提交回复
热议问题