Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python PIL | getbands() method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article
PIL is the Python Imaging Library which provides the python interpreter with image editing
capabilities. PIL.Image.getbands() method returns a tuple containing the name of each band in the image.For example, getbands on an RGB image returns (“R”, “G”, “B”).

Syntax: PIL.Image.getbands()
Parameters: no arguments
Returns: A tuple containing band names.




# Importing Image module from PIL package 
from PIL import Image
  
# creating a image object
im1 = Image.open(r"C:\Users\sadow984\Desktop\i3.PNG")
  
# get bands of image
im2 = im1.getbands()
  
# print band names.
print(im2)

Output:
(‘R’, ‘G’, ‘B’, ‘A’)

Image used above is:




# Importing Image module from PIL package 
from PIL import Image
  
# creating a image object
im1 = Image.open(r"C:\Users\sadow984\Desktop\r1.PNG")
  
# get bands of image
im2 = im1.getbands()
  
# print band names.
print(im2)

Output:
(‘P’, )

Image used above is:

My Personal Notes arrow_drop_up
Last Updated : 29 Jul, 2019
Like Article
Save Article
Similar Reads
Related Tutorials