@Override
public ImageOutputStream createOutputStreamInstance(Object output, boolean useCache,
File cacheDir) throws IOException {
if (output instanceof RandomAccessFile) {
return new FileImageOutputStream((RandomAccessFile) output);
}
throw new IllegalArgumentException(Messages.getString("imageio.87"));
}