Saturday, November 22, 2025
HomeLanguagesPython PIL Attributes | Image.height method

Python PIL Attributes | Image.height 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 height attributes.

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

Syntax: PIL.Image.height

Parameters:
image– image used of different extension.

Returns: height 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") 
  
# height attribute
im1 = im.height
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") 
  
# height attribute
im1 = im.height
print(im1)


Output:

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

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS