|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectlt.monarch.image.gif.GIFCompressor
public class GIFCompressor extends java.lang.Object
GIFCompressor - compress a GIF file with RLE compression algorithm. This image encoding does not requires UNISYS license, but image files are larger.
| Constructor and Description |
|---|
GIFCompressor()
Allows to create GIF file without LZW algorithm. |
| Modifier and Type | Method and Description |
|---|---|
static void |
GIFCompress(java.io.OutputStream dataOutput,
int codeSize,
byte[] toCompress)
Crates a GIF file without LZW algorithm. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public GIFCompressor()
| Method Detail |
|---|
public static void GIFCompress(java.io.OutputStream dataOutput,
int codeSize,
byte[] toCompress)
throws java.io.IOException
dataOutput - output stream.codeSize - number indicates block size.toCompress - bytes that must be written.java.io.IOException - if an I/O error occurs. In particular, an IOException
may be thrown if the output stream has been closed.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||