Hey guys, just finished up two interfaces for loading files and saving visual output. The google code page above contains:
Download,
JavaDoc,
Source, and Examples.
I don't know about you guys, but I hate worrying about how my data files' names are formatted. I don't care. I just want to load them. Usually images into a PImage and SVGs into a PShape or a Geomerative RShape
Loader<E> - Mass Loading:
// Load all images
Loader<PImage> imageLoader = new PImageLoader(this);
List<PImage> imageList = imageLoader.load();
// Load all SVGs that contain a search
Loader<RShape> shapeLoader = new RShapeLoader(this);