Package org.jzy3d.plot2d.primitive
Interface AWTImageGenerator
-
- All Known Implementing Classes:
AWTAbstractImageGenerator
,AWTColorbarImageGenerator
public interface AWTImageGenerator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Font
getAWTFont()
Color
getBackgroundColor()
Font
getFont()
Color
getForegroundColor()
boolean
hasBackground()
void
setAWTFont(Font font)
void
setBackgroundColor(Color backgroundColor)
void
setFont(Font font)
void
setForegroundColor(Color foregroundColor)
void
setHasBackground(boolean hasBackground)
BufferedImage
toImage(int width, int height)
-
-
-
Method Detail
-
toImage
BufferedImage toImage(int width, int height)
-
hasBackground
boolean hasBackground()
-
setHasBackground
void setHasBackground(boolean hasBackground)
-
getBackgroundColor
Color getBackgroundColor()
-
setBackgroundColor
void setBackgroundColor(Color backgroundColor)
-
getForegroundColor
Color getForegroundColor()
-
setForegroundColor
void setForegroundColor(Color foregroundColor)
-
getAWTFont
Font getAWTFont()
-
setAWTFont
void setAWTFont(Font font)
-
setFont
void setFont(Font font)
-
getFont
Font getFont()
-
-