www.pudn.com > MoviesWeb.zip   To Read all the content


[file head]:
package com.blue.imageio.plugins.gif;

import java.io.IOException;
import java.util.Locale;

import javax.imageio.ImageTypeSpecifier;
import javax.imageio.ImageWriter;
import javax.imageio.spi.ImageWriterSpi;

public class GIFImageWriterSpi extends ImageWriterSpi
{
public GIFImageWriterSpi() {
super("Blue Moonlight Studio, http://www.bluedeveliper.com/", "1.0",
new String[] {"gif", "GIF"},
new String[] {"gif", "GIF"},
new String[] {"image/gif", "image/x-gif"},
"com.blue.imageio.plugins.gif.GIFImageWriter",
STANDARD_OUTPUT_TYPE,
null, false, null, null, null, null, false, null, null, null, null);
}

public String getDescription(Locale locale) {
return "GRAPHICS INTERCHANGE FORMAT(sm) version 89a";
}

public ImageWriter createWriterInstance(Object obj) throws IOException {
return new GIFImageWriter(this);
}

public boolean canEncodeImage(ImageTypeSpecifier imagetypespecifier) {
return true;
}
}

... ...