- getFrameAt(int) - Method in class net.jmge.gif.Gif89Encoder
-
Get a reference back to a Gif89Frame object by position.
- getFrameCount() - Method in class net.jmge.gif.Gif89Encoder
-
Get the number of frames that have been added so far.
- Gif89Encoder - Class in net.jmge.gif
-
This is the central class of a JDK 1.1 compatible GIF encoder that, AFAIK,
supports more features of the extended GIF spec than any other Java open
source encoder.
- Gif89Encoder() - Constructor for class net.jmge.gif.Gif89Encoder
-
Use this default constructor if you'll be adding multiple frames
constructed from RGB data (i.e., AWT Image objects or ARGB-pixel arrays).
- Gif89Encoder(Image) - Constructor for class net.jmge.gif.Gif89Encoder
-
Like the default except that it also adds a single frame, for conveniently
encoding a static GIF from an image.
- Gif89Encoder(Color[]) - Constructor for class net.jmge.gif.Gif89Encoder
-
This constructor installs a user color table, overriding the detection of
of a palette from ARBG pixels.
- Gif89Encoder(Color[], int, int, byte[]) - Constructor for class net.jmge.gif.Gif89Encoder
-
Convenience constructor for encoding a static GIF from index-model data.
- Gif89Frame - Class in net.jmge.gif
-
First off, just to dispel any doubt, this class and its subclasses have
nothing to do with GUI "frames" such as java.awt.Frame.