Render a Map to a GIF image.
Constructor and description |
---|
GIF
() Create a new GIF |
Type Params | Return 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. |
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