views:

160

answers:

2

hi,

I want to put images from my photo library in to the EAGL view for some further processing. The image that are already in our resources folder will be taken by itself but mltiple or images from photo library can't. So any one knows how to put image on EAGL view in open GLES.

Regtards viral

+2  A: 

Look at the Apple sample called GLImageProcessing: it demonstrate how to use load an UIImage and put it in an EAGL view.

Laurent Etiemble
I've viewed it, but it allows me to get only a single image not images from the library. I m not able to get multiple images so any other way??
iPhone Fun
Perhaps you could extrapolate from a single image to multiple images from the library??
Alex Reynolds
Ok let me see what i can do!!! but thanks for support.
iPhone Fun
You can load the various images as textures and then map them on different OpenGL quads (one for each image).As for the multiple selection, I don't know if the image picker allows it (never tried).
Laurent Etiemble
A: 

Should make sense to try image picker, then select different images to process. I will try it.

Forrest