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.)
-
delay
- The delay for this frame, in hundredths of a second.
-
dispose
- The disposal method for this frame, per GIF 89A specification.
-
image
- An individual image frame
-
xPos
- The image origin's x-coordinate
-
yPos
- The image origin's y-coordinate
-
GIFFrame()
-
image
public Image image
- An individual image frame
xPos
public int xPos
- The image origin's x-coordinate
yPos
public int yPos
- The image origin's y-coordinate
delay
public int delay
- The delay for this frame, in hundredths of a second.
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.
GIFFrame
public GIFFrame()
All Packages Class Hierarchy This Package Previous Next Index