I was wondering if there was a way of having a ImageIcon[] converted into a series of Buffered Image, I was thinking along the lines of something like this:
public BufferedImage iconArrayToBufferedImage(ImageIcon[] icon){
for (int i = 0; i < icon.length; i++) {
BufferedImage screenShot = new BufferedImage(icon[i]);
}
return screenShot;
}