VOOZH about

URL: https://www.geeksforgeeks.org/python/python-pil-image-merge-method/

⇱ Python PIL | Image.merge() method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python PIL | Image.merge() method

Last Updated : 19 Jul, 2019
PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. The Image module provides a class with the same name which is used to represent a PIL image. The module also provides a number of factory functions, including functions to load images from files, and to create new images. Image.merge() Merge a set of single band images into a new multiband image.
Syntax: PIL.Image.merge(mode, bands) Parameters: mode – The mode to use for the output image. See: Modes. bands – A sequence containing one single-band image for each band in the output image. All bands must have the same size. Returns: An Image object.
Image Used: 👁 Image
Output: 👁 Image
Another Example:Here used another image. Image Used: 👁 Image
Output: 👁 Image
Comment
Article Tags:
Article Tags: