Consider implementing a jcr-runner. You can let it select nodes of your imageset nodetype (hippogallery:imageset for instance). Then fetch the child node containing the original file data and dump this into a file. On the imageset node you can also find the original filename in a property called HippoGalleryNodeType.IMAGE_SET_FILE_NAME.
Then do something like:
Node original = node.getNode(HippoGalleryNodeType.IMAGE_SET_ORIGINAL);
InputStream is = getData(original);
...
Rob
Op donderdag 6 november 2014 14:52:23 UTC+1 schreef Dante: