Noob question, but what are the differences in data between these 2?
Code
ImageLoader loader = new ImageLoader();
ImageData[] imageData = loader.load(fileName);
Code
Image image = new Image(display,fileName);
ImageData imageData = image.getImageData();
Wondering what the differences are as the last option works just fine for 8bit pictures, but not for 24bit pictures and the first one works just fine for either one. Thanks.