Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9118241
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T05:05:57+00:00 2026-06-17T05:05:57+00:00

Using Python ‘s PIL module, we can read an digital image into an array

  • 0

Using Python‘s PIL module, we can read an digital image into an array of integers,

from PIL import Image
from numpy import array

img = Image.open('x.jpg')
im = array(img)  # im is the array representation of x.jpg

I wonder how does PIL interpret an image as an array? First I tried this

od -tu1 x.jpg

and it indeed gave a sequence of numbers, but how does PIL interpret a color image into a 3D array?

In short, my question is that I want to know how can I get a color image’s array representation without using any module like PIL, how could do the job using Python?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T05:05:58+00:00Added an answer on June 17, 2026 at 5:05 am

    Well, it depends on the image format I would say.

    For a .jpg, there is a complete description of the format that permits to read the image .
    You can read it here

    What PIL does is exactly what you did at first. But then it reads the bytes following the specifications, which allow it to transform this into a human readable format (in this case an array).

    It may seem complex for JPEG, but if you take png (the version without compression) everything can seem way more simple.
    For example this image

    png image without compression

    If you open it, you will see something like that :
    Raw dump of previous png image

    You can see several information on top that corresponds to the header.

    Then you see all those zeroes, that are the numerical representation of black pixels of the image (the top left corner).

    If you open the image with PIL, you will get an array that is mostly filled with 0.

    If you want to know more about the first bytes, look at the png specifications chapter 11.2.2.

    You will see that some of the bytes corresponds to the width and height of the image. This is how PIL is able to create the array :).

    Hope this helps !

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using python 2.6.5, I can use the with statement without calling from __future__ import
Using Python's csv module, is it possible to read an entire, large, csv file
Using python and wsgiref.handlers, I can get a single variable from a form with
Using Python NumPy to calculate the sum of the column of a matrix: import
Using Python Image Library PIL and Google App Engine Blobstore... This: img = images.Image(blob_key=image)
Using Python (3.1 or 2.6), I'm trying to read data from binary data files
Using Python module re, how to get the equivalent of the \w (which matches
Using Python I need to insert a newline character into a string every 64
Using python shell >>> import requests >>> cookies = {'sentcookie':'666'} >>> res = requests.get('http://en.wikipedia.org/wiki/Main_Page',
When using python , can SQLite be used as production database to manage say

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.