The separate parts are probably not that difficult. There are a lot of samples on this site on how to traverse a folder in php. Personally, I use phpThumb for thumbnail sizing and caching. The next problem is probably, what are you going to do with it ? Does it need to become and image slider on your page ? That would mean you'd have to make an e107 plugin of the parts.
pritaeas
Posting Expert
5,483 posts since Jul 2006
Reputation Points: 653
Solved Threads: 875
Have a look at this: http://php.net/manual/en/function.opendir.php
The examples in the comment show how you can read recursive directory contents. To avoid having to do this everytime someone loads your page, you should cache these results (perhaps in a plain text file), so they can be easily reloaded. You could refresh this file once a day (this all depends on your traffic). H.t.h.
pritaeas
Posting Expert
5,483 posts since Jul 2006
Reputation Points: 653
Solved Threads: 875