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 7195771
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T20:38:47+00:00 2026-05-28T20:38:47+00:00

I store image’s pixels in a single multiprocessing.Array of integers which can be indexed

  • 0

I store image’s pixels in a single multiprocessing.Array of integers which can be indexed as

self.data[x*height + y]

as this is convenient to use with IPC.

I’m trying to save the pixels to a file using PIL’s putdata() to make it faster than using putpixel() or the [] indexing. However I cannot figure out in which format does putdata() want the imagedata.

I thought the same type of indexing would work with putdata()

def write(self):
    im = Image.new("RGB", (self.width, self.height))
    imagedata = [self.intToRGB(self.data[i*self.height + j]) 
                     for i in range(self.width) 
                        for j in range(self.height)]
    im.putdata(imagedata)
    im.save(self.filename, "PNG")

self.intToRGB() returns a tuple(r, g, b).

But the code above results to a -90 degrees turned image with a lot of repetition.

crooked

If I use putpixel() instead of putdata() like this:

    pic = im.load()
    for i in range(self.width):
        offset = i * self.height
        for j in range(self.height):
            pic[i, j] =  imagedata[i * self.height + j]

it produces

this

  • 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-05-28T20:38:48+00:00Added an answer on May 28, 2026 at 8:38 pm

    I think I see the problem in your first line:

    self.data[x*height + y]
    

    Image data is generally organized the other way around:

    self.data[y*width + x]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using a memory pool to store image data in a ray tracer and
I've been trying to Base64 encode image data from the user (in this case
I use CoreData to store image data that user took from iPhone's Camera. Over
Looking at the Apple iPhone Core Data Recipes sample app, they store image files
Can you store an image in a PHP SESSION ? I have a multi-step
Here I am attaching code in which store image in Drawable and pass to
I'm trying to store image data (screenshots) in SQLite database. now = int(math.floor(time.time())) ba
I want to store image for every employee while updating their records. How can
Does SubSonic provide any mechanism to store image (converted in byte[] format)? Can someone
Before I tried this , Store image in R.drawable folder .. Bitmap b =

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.