Googling &quot;PIL Handbook&quot; yields this page<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.pythonware.com/library/pil/handbook/image.htm" target="_blank">http://www.pythonware.com/library/pil/handbook/image.htm
</a><br>and, as I said,<br>&quot;&quot;&quot;<br><br><br> &nbsp; &nbsp; &nbsp;getdata<br><br>*im.getdata()* =&gt; sequence<br><br>Returns the contents of an image as a sequence object containing pixel<br>values. The sequence object is flattened, so that values for line one
<br>follow directly after the values of line zero, and so on.<br><br>Note that the sequence object returned by this method is an internal PIL<br>data type, which only supports certain sequence operations, including<br>iteration and basic sequence access. To convert it to an ordinary
<br>sequence (e.g. for printing), use *list(im.getdata())*.<br><br><br><br><br><br>How do I find out how the list look like?<br><br>Is it list[x][y]&nbsp; ?&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; or rather, how did you find out how this internal data type look like?
<br><br>how do I access it ?<br>