Java Utililty Methods BufferedImage Load

List of utility methods to do BufferedImage Load

Description

The list of methods to do BufferedImage Load are organized into topic(s).

Method

voidloadImages(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) {
MaploadImagesForVVPAT(File ballotFile)
Loads the VVPAT ready files from the ballot.
return loadImagesForVVPAT(ballotFile.getAbsolutePath());