Uses of Class
net.jmge.gif.Gif89Frame

Packages that use Gif89Frame
net.jmge.gif This package contains the Gif89Encoder library, version 0.90 beta (15-Jul-2000) by J M G Elliot and is available from http://jmge.net/java/gifenc/. 
 

Uses of Gif89Frame in net.jmge.gif
 

Subclasses of Gif89Frame in net.jmge.gif
 class DirectGif89Frame
          Instances of this Gif89Frame subclass are constructed from RGB image info, either in the form of an Image object or a pixel array.
 class IndexGif89Frame
          Instances of this Gif89Frame subclass are constructed from bitmaps in the form of color-index pixels, which accords with a GIF's native palettized color model.
 

Methods in net.jmge.gif that return Gif89Frame
 Gif89Frame Gif89Encoder.getFrameAt(int index)
          Get a reference back to a Gif89Frame object by position.
 

Methods in net.jmge.gif with parameters of type Gif89Frame
 void Gif89Encoder.addFrame(Gif89Frame gf)
          Add a Gif89Frame frame to the end of the internal sequence.
 void Gif89Encoder.insertFrame(int index, Gif89Frame gf)
          Like addFrame() except that the frame is inserted at a specific point in the sequence rather than appended.