Python PIL | getbands() method
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”).
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) |
chevron_right
filter_none
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) |
chevron_right
filter_none
Output:
(‘P’, )
Image used above is:
Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course.