return null;
}
ColorInputStream cis = new ColorInputStream(in,
ColorMode.TRUECOLOR32BIT, true);
cis.addFilterChain(filterchain);
ColorOutputStream cos = new ColorOutputStream(out);
Writer babbler = new Writer(cos, image);
Reader reader = new Reader(cis, ret);
reader.start();
babbler.start();
synchronized (this) {