All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.kcmultimedia.gifcanvas.GIFFrame

java.lang.Object
   |
   +----com.kcmultimedia.gifcanvas.GIFFrame

public class GIFFrame
extends Object
The GIFFrame class contains the individual animation frame data that comprise the animated GIF. In the interest of keeping this package as small as possible the fields of this class are directly accessible. (That's why get or set methods have not been implemented.)


Variable Index

 o delay
The delay for this frame, in hundredths of a second.
 o dispose
The disposal method for this frame, per GIF 89A specification.
 o image
An individual image frame
 o xPos
The image origin's x-coordinate
 o yPos
The image origin's y-coordinate

Constructor Index

 o GIFFrame()

Variables

 o image
 public Image image
An individual image frame

 o xPos
 public int xPos
The image origin's x-coordinate

 o yPos
 public int yPos
The image origin's y-coordinate

 o delay
 public int delay
The delay for this frame, in hundredths of a second.

 o dispose
 public int dispose
The disposal method for this frame, per GIF 89A specification.
   0 - None specified.
   1 - Do not dispose.
   2 - Restore background color
   3 - Restore to previous
 4-7 - To be defined.
Please refer to Graphic Interchange Format Version 89a, 31 July 1990 Copyright (c) 1987-90 Compuserve Inc. for further information.

Constructors

 o GIFFrame
 public GIFFrame()

All Packages  Class Hierarchy  This Package  Previous  Next  Index