I'm trying to convert normal image to PlanarImage but the PlanarImage will show only black & white image in the applet. My guess is that it has something to do with bands but I can't figure out how to solve the problem.
Here is the code what I'm trying to use in applet's init method
public void init(){ Image my_gif; URL base; MediaTracker mt;
mt = new MediaTracker(this); try { base = getCodeBase(); } catch (Exception e) {}