I am using Python and the PIL library and I have the RGB information for every pixel of an image along with their location. Is there any way that I can build an image from this information?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Certainly. If your source data is sparse (ie. you don't have a value for every pixel location) you probably want to do the following:
So, assuming you have an array of tuples such as
If your source image data is complete (ie. you have a colour value for every position) then it would probably be faster to transform your data into a buffer formatted with the desired memory layout, and then create an image in one step using |
|||
|
|
|
Yes. That's what Hard to advise you further since you provided no code or even a sample of the data. |
|||
|
|