Tuesday, February 10, 2026
HomeLanguagesPython PIL Attributes | Image.width Method

Python PIL Attributes | Image.width Method

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.

The Image class have the width attributes.

Image.width Image width, in pixels. Attribute defines the various property of an object, element or file.

Syntax: PIL.Image.width

Parameters:
image– image used of different extension.

Returns: width of the image

Image Used:




   
  
# importing Image module from PIL package 
from PIL import Image 
  
# opening a  image 
im = Image.open(r"C:\Users\System-Pc\Desktop\flower1.jpg"
  
# width attribute
im1 = im.width
print(im1)


Output:

225

Another Example: take another image with .png extension.

Image Used:




   
  
# importing Image module from PIL package 
from PIL import Image 
  
# opening a  image 
im = Image.open(r"C:\Users\System-Pc\Desktop\python.png"
  
# width attribute
im1 = im.width
print(im1)


Output:

220
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32496 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6869 POSTS0 COMMENTS
Nicole Veronica
11994 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12090 POSTS0 COMMENTS
Shaida Kate Naidoo
7004 POSTS0 COMMENTS
Ted Musemwa
7245 POSTS0 COMMENTS
Thapelo Manthata
6956 POSTS0 COMMENTS
Umr Jansen
6944 POSTS0 COMMENTS