Not familiar with Getty, but if you put your images in directories on your server, you can use PHP to get a list of directories, and then scroll through the list to display the images.
$root = "/home/www/files"; if ( $handle = opendir("{$root}/altered/") ) {
If you want to get an idea of ββthis, you can even write an XML file with image information and put it on the server, and then parse the XML when uploading images to deliver metadata, such as the names of the files that downloaded the file, etc.
Shane source share