Python Pillow - Using Image Module (2024)

To display the image, pillow library is using an image class within it. The image module inside pillow package contains some important inbuilt functions like, load images or create new images, etc.

Opening, rotating and displaying an image

To load the image, we simply import the image module from the pillow and call the Image.open(), passing the image filename.

Instead of calling the Pillow module, we will call the PIL module as to make it backward compatible with an older module called Python Imaging Library (PIL). That’s why our code starts with “from PIL import Image” instead of “from Pillow import Image”.

Next, we’re going to load the image by calling the Image.open() function, which returns a value of the Image object data type. Any modification we make to the image object can be saved to an image file with the save() method. The image object we received using Image.open(), later can be used to resize, crop, draw or other image manipulation method calls on this Image object.

Example

Following example demonstrates the rotation of an image using python pillow −

from PIL import Image#Open image using Image moduleim = Image.open("images/cuba.jpg")#Show actual Imageim.show()#Show rotated Imageim = im.rotate(45)im.show()

Output

If you save the above program as Example.py and execute, it displays the original and rotated images using standard PNG display utility, as follows −

Actual image

Python Pillow - Using Image Module (1)

Rotated image (45 degrees)

Python Pillow - Using Image Module (2)

Attributes of Image Module

The instance of the Image class has some attributes. Let’s try to understand few of them by example −

Image.filename

This function is used to get the file name or the path of the image.

>>>image = Image.open('beach1.jpg')>>> image.filename'beach1.jpg'

Image.format

This function returns file format of the image file like ‘JPEG’, ‘BMP’, ‘PNG’, etc.

>>> image = Image.open('beach1.jpg')>>>>>> image.format'JPEG'

Image.mode

It is used to get the pixel format used by the image. Typical values are “1”, “L”, “RGB” or “CMYK”.

>>> image.mode'RGB'

Image.size

It returns the tuple consist of height & weight of the image.

>>> image.size(1280, 721)

Image.width

It returns only the width of the image.

>>> image.width1280

Image.height

It returns only the height of the image.

>>> image.height721

Image.info

It returns a dictionary holding data associated with the image.

>>> image.info{'jfif': 257, 'jfif_version': (1, 1), 'dpi': (300, 300), 'jfif_unit': 1, 'jfif_density': (300, 300), 'exif': b"Exif\x00\x00MM\x00*\x00\x00\x00........\xeb\x00\x00'\x10\x00\x00\xd7\xb3\x00\x00\x03\xe8"}

Image.palette

It returns the colour palette table, if any.

>>> image.palette

Output above − None

Advertisem*nts

Python Pillow - Using Image Module (2024)
Top Articles
Airbnb Furniture Checklist for Short Term Rentals
Online Free Packing Slip Generator - Zoho Inventory
Splunk Stats Count By Hour
Manhattan Prep Lsat Forum
The Definitive Great Buildings Guide - Forge Of Empires Tips
Best Private Elementary Schools In Virginia
Nieuwe en jong gebruikte campers
Aries Auhsd
Strange World Showtimes Near Amc Braintree 10
Craigslist Heavy Equipment Knoxville Tennessee
Dump Trucks in Netherlands for sale - used and new - TrucksNL
Nalley Tartar Sauce
Imagetrend Inc, 20855 Kensington Blvd, Lakeville, MN 55044, US - MapQuest
CANNABIS ONLINE DISPENSARY Promo Code — $100 Off 2024
Lawson Uhs
Cocaine Bear Showtimes Near Regal Opry Mills
Silive Obituary
Epguides Strange New Worlds
Ahn Waterworks Urgent Care
Move Relearner Infinite Fusion
Biografie - Geertjan Lassche
Santa Barbara Craigs List
Amazing Lash Bay Colony
Everything You Need to Know About Ñ in Spanish | FluentU Spanish Blog
Mia Malkova Bio, Net Worth, Age & More - Magzica
Bursar.okstate.edu
Siskiyou Co Craigslist
The Hoplite Revolution and the Rise of the Polis
Myhrconnect Kp
Sedano's Supermarkets Expands to Orlando - Sedano's Supermarkets
Audi Q3 | 2023 - 2024 | De Waal Autogroep
Glossytightsglamour
Pickle Juiced 1234
Omnistorm Necro Diablo 4
42 Manufacturing jobs in Grayling
Why Gas Prices Are So High (Published 2022)
Boone County Sheriff 700 Report
8 Ball Pool Unblocked Cool Math Games
Is The Nun Based On a True Story?
South Bend Tribune Online
Dcilottery Login
Mississippi weather man flees studio during tornado - video
Citibank Branch Locations In North Carolina
Nu Carnival Scenes
Gon Deer Forum
Makes A Successful Catch Maybe Crossword Clue
877-552-2666
Stephen Dilbeck, The First Hicks Baby: 5 Fast Facts You Need to Know
Metra Union Pacific West Schedule
Provincial Freeman (Toronto and Chatham, ON: Mary Ann Shadd Cary (October 9, 1823 – June 5, 1893)), November 3, 1855, p. 1
Leslie's Pool Supply Redding California
Latest Posts
Article information

Author: Eusebia Nader

Last Updated:

Views: 5919

Rating: 5 / 5 (80 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Eusebia Nader

Birthday: 1994-11-11

Address: Apt. 721 977 Ebert Meadows, Jereville, GA 73618-6603

Phone: +2316203969400

Job: International Farming Consultant

Hobby: Reading, Photography, Shooting, Singing, Magic, Kayaking, Mushroom hunting

Introduction: My name is Eusebia Nader, I am a encouraging, brainy, lively, nice, famous, healthy, clever person who loves writing and wants to share my knowledge and understanding with you.