Hey,
This is what I need to do, if someone could tell me if it is possible, and if so, how to code it, that would be awesome.
I have a folder full of images, and a database table, containing, among other things, a field that has the location of a specific image in that folder. The images are full size, around 500px square. What I want to do is create a web page where all these images can be displayed, but in a thumbnail form. I also want to be able to change the appearance of them, such as adding hues, or making them black and white. However, I don't want to save a version of the original image in thumbnail form with a hue though, as I want to be able to change the hue on it.
I know it is possible to get an image using php, resize it using php and manipulate it like this, and then return it to the browser, but the methods I have seen so far are only capable of returning a single image, as you have to use a header. Is there a way of doing this, but returning multiple images on one page?
Thanks very much for any help you might be able to give.