static java.lang.String |
BitmapEncoder.addFileExtension(java.lang.String fileName,
BitmapEncoder.BitmapFormat bitmapFormat) |
Only adds the extension of the BitmapFormat to the filename if the filename doesn't already
have it.
|
static <T extends Chart<?,?>> byte[] |
BitmapEncoder.getBitmapBytes(T chart,
BitmapEncoder.BitmapFormat bitmapFormat) |
Generates a byte[] for a given chart
|
static <T extends Chart<?,?>> void |
BitmapEncoder.saveBitmap(java.util.List<T> charts,
java.lang.Integer rows,
java.lang.Integer cols,
java.io.OutputStream targetStream,
BitmapEncoder.BitmapFormat bitmapFormat) |
Save list of Charts into a given stream.
|
static <T extends Chart<?,?>> void |
BitmapEncoder.saveBitmap(java.util.List<T> charts,
java.lang.Integer rows,
java.lang.Integer cols,
java.lang.String fileName,
BitmapEncoder.BitmapFormat bitmapFormat) |
Save list of Charts as an image file.
|
static <T extends Chart<?,?>> void |
BitmapEncoder.saveBitmap(T chart,
java.io.OutputStream targetStream,
BitmapEncoder.BitmapFormat bitmapFormat) |
Write a Chart into a given stream.
|
static <T extends Chart<?,?>> void |
BitmapEncoder.saveBitmap(T chart,
java.lang.String fileName,
BitmapEncoder.BitmapFormat bitmapFormat) |
Save a Chart as an image file
|
static <T extends Chart<?,?>> void |
BitmapEncoder.saveBitmapWithDPI(T chart,
java.lang.String fileName,
BitmapEncoder.BitmapFormat bitmapFormat,
int DPI) |
Save a chart as a PNG with a custom DPI.
|