Package it.tidalwave.image.render
Interface Overlay
-
- All Known Implementing Classes:
CropOverlay,EditingTool,OverlaidPanel
public interface OverlayAn Overlay is something that is drawn over a rendered image.- Author:
- Fabrizio Giudici
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisVisible()voidpaint(java.awt.Graphics2D g, EditableImageRenderer imageRenderer)As the Graphics2D object passed is a copy of the original, this method can change attributes (e.g.
-
-
-
Method Detail
-
paint
void paint(java.awt.Graphics2D g, EditableImageRenderer imageRenderer)As the Graphics2D object passed is a copy of the original, this method can change attributes (e.g. color, clip) without worrying about restoring them to their original values.
-
isVisible
boolean isVisible()
-
-