Uses of Enum Class
org.knowm.xchart.BitmapEncoder.BitmapFormat
Packages that use BitmapEncoder.BitmapFormat
-
Uses of BitmapEncoder.BitmapFormat in org.knowm.xchart
Subclasses with type arguments of type BitmapEncoder.BitmapFormat in org.knowm.xchartMethods in org.knowm.xchart that return BitmapEncoder.BitmapFormatModifier and TypeMethodDescriptionstatic BitmapEncoder.BitmapFormatReturns the enum constant of this class with the specified name.static BitmapEncoder.BitmapFormat[]BitmapEncoder.BitmapFormat.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.knowm.xchart with parameters of type BitmapEncoder.BitmapFormatModifier and TypeMethodDescriptionstatic StringBitmapEncoder.addFileExtension(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 chartstatic <T extends Chart<?,?>>
voidBitmapEncoder.saveBitmap(List<T> charts, Integer rows, Integer cols, OutputStream targetStream, BitmapEncoder.BitmapFormat bitmapFormat) Save list of Charts into a given stream.static <T extends Chart<?,?>>
voidBitmapEncoder.saveBitmap(List<T> charts, Integer rows, Integer cols, String fileName, BitmapEncoder.BitmapFormat bitmapFormat) Save list of Charts as an image file.static <T extends Chart<?,?>>
voidBitmapEncoder.saveBitmap(T chart, OutputStream targetStream, BitmapEncoder.BitmapFormat bitmapFormat) Write a Chart into a given stream.static <T extends Chart<?,?>>
voidBitmapEncoder.saveBitmap(T chart, String fileName, BitmapEncoder.BitmapFormat bitmapFormat) Save a Chart as an image filestatic <T extends Chart<?,?>>
voidBitmapEncoder.saveBitmapWithDPI(T chart, String fileName, BitmapEncoder.BitmapFormat bitmapFormat, int DPI) Save a chart as a PNG with a custom DPI.