public static void encodeGIF(BufferedImage image, OutputStream out)
throws IOException {
Gif89Encoder encoder = new Gif89Encoder(image);
encoder.encode(out);
}
public static void encodeWBMP(BufferedImage image, OutputStream out)
throws InterruptedException, IOException {