Hi Ronie,
Here is an example:
On 22 Nov 2013, at 19:00, Ronie Salgado <roniesalg@gmail.com> wrote:
> Hello,
>
> I would like to know how I could load .png image into pharo, and being able to access to their pixel data for manipulation or display it.
>
> Greetings,
> Ronie Salgado
'/Users/Sven/Desktop/test.jpg' asFileReference readStreamDo: [ :in |
�(JPEGReadWriter on: in) nextImage asMorph openInWindow ].
Inspect the results of #nextImage or #asMorph to learn more, this code actually opens the image in a window in Pharo.
Regards,
Sven