Open In App

Python PIL Attributes | Image.width Method

Last Updated : 27 Sep, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads