Thursday, September 4, 2025
HomeLanguagesPython PIL | Image.new() method

Python PIL | Image.new() method

PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. 
PIL.Image.new() method creates a new image with the given mode and size. Size is given as a (width, height)-tuple, in pixels. The color is given as a single value for single-band images, and a tuple for multi-band images (with one value for each band). 
We can also use color names. If the color argument is omitted, the image is filled with zero (this usually corresponds to black). If the color is None, the image is not initialized. This can be useful if you’re going to paste or draw things in the image.
 

Syntax: 
PIL.Image.new(mode, size) 
PIL.Image.new(mode, size, color)
Parameters: 
mode: The mode to use for the new image. (It could be RGB, RGBA) 
size: A 2-tuple containing (width, height) in pixels. 
color: What color to use for the image. Default is black. If given, this should be a single integer or floating point value for single-band modes, and a tuple for multi-band modes.
Return Value: An Image object. 
 

Code #1: 
 

Python3




# Imports PIL module
import PIL
 
# creating a image object (new image object) with
# RGB mode and size 200x200
im = PIL.Image.new(mode="RGB", size=(200, 200))
 
# This method will show image in any image viewer
im.show()


Output: 
 

  
Code #2: 
 

Python3




# imports Pil module
import PIL
 
# creating image object which is of specific color
im = PIL.Image.new(mode = "RGB", size = (200, 200),
                           color = (153, 153, 255))
 
# this will show image in any image viewer
im.show()


Output: 
 

One can alter the value of color tuple to get different colors or we can simply use color name (for single band images). 

RELATED ARTICLES

Most Popular

Dominic
32262 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11799 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11857 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6696 POSTS0 COMMENTS
Umr Jansen
6716 POSTS0 COMMENTS