Render a Map to a GIF image.
Constructor and description |
---|
GIF
() Create a new GIF |
Type | Name and description |
---|---|
void |
renderAnimated(java.util.List<java.awt.image.BufferedImage> images, java.io.File file, int delay = 300, boolean loop = false) Render a list of GIF images as an animated GIF to a File. |
byte[] |
renderAnimated(java.util.List<java.awt.image.BufferedImage> images, int delay = 300, boolean loop = false) Render a list of GIF images as an animated GIF to a byte array. |
Methods inherited from class | Name |
---|---|
class Image |
getImageType, render, render |
class Renderer |
render, render |
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Render a list of GIF images as an animated GIF to a File.
images
- The List of GIF imagesfile
- The Filedelay
- The delay between images in millisecondsloop
- Whether to loop continuously or notRender a list of GIF images as an animated GIF to a byte array.
images
- The List of GIF imagesdelay
- The delay between images in millisecondsloop
- Whether to loop continuously or not