List of utility methods to do BufferedImage Load
void | loadImages(Image[] images, Component comp) Load images (used for preloading images). MediaTracker tracker = new MediaTracker(comp); for (int i = 0; i < images.length; i++) tracker.addImage(images[i], 0); try { tracker.waitForID(0); } catch (InterruptedException ignore) { |
Map | loadImagesForVVPAT(File ballotFile) Loads the VVPAT ready files from the ballot. return loadImagesForVVPAT(ballotFile.getAbsolutePath());
|