public class Graphics2DRecorder
extends java.awt.Graphics2D
implements java.lang.Cloneable
Modifier and Type | Field and Description |
---|---|
private GraphicsStyle |
ctx |
private java.awt.GraphicsConfiguration |
deviceConfig
Device configuration settings.
|
private boolean |
disposed
Flag that tells whether this graphics object has been disposed.
|
private java.awt.font.FontRenderContext |
fontRenderContext
Context settings used to render fonts.
|
private java.util.List<GraphicsOp> |
ops |
private int |
suspendRecordingCounter |
Constructor and Description |
---|
Graphics2DRecorder() |
Modifier and Type | Method and Description |
---|---|
private void |
add(GraphicsOp op)
Add the operation and apply it to the current graphics context.
|
void |
addRenderingHints(java.util.Map<?,?> hints) |
void |
clearRect(int x,
int y,
int width,
int height) |
void |
clip(java.awt.Shape s) |
void |
clipRect(int x,
int y,
int width,
int height) |
java.lang.Object |
clone() |
void |
copyArea(int x,
int y,
int width,
int height,
int dx,
int dy) |
java.awt.Graphics |
create() |
void |
dispose() |
void |
draw(java.awt.Shape s) |
void |
draw(java.awt.Shape s,
boolean createCopy)
The the outline of the specified Shape.
|
void |
drawArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle) |
void |
drawGlyphVector(java.awt.font.GlyphVector g,
float x,
float y) |
void |
drawImage(java.awt.image.BufferedImage img,
java.awt.image.BufferedImageOp op,
int x,
int y) |
boolean |
drawImage(java.awt.Image img,
java.awt.geom.AffineTransform tr,
java.awt.image.ImageObserver obs) |
boolean |
drawImage(java.awt.Image img,
int x,
int y,
java.awt.Color bgcolor,
java.awt.image.ImageObserver observer) |
boolean |
drawImage(java.awt.Image img,
int x,
int y,
java.awt.image.ImageObserver observer) |
boolean |
drawImage(java.awt.Image img,
int x,
int y,
int width,
int height,
java.awt.Color bgcolor,
java.awt.image.ImageObserver observer) |
boolean |
drawImage(java.awt.Image img,
int x,
int y,
int width,
int height,
java.awt.image.ImageObserver observer) |
boolean |
drawImage(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.Color bgcolor,
java.awt.image.ImageObserver observer) |
boolean |
drawImage(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.image.ImageObserver observer) |
void |
drawLine(int x1,
int y1,
int x2,
int y2) |
void |
drawOval(int x,
int y,
int width,
int height) |
void |
drawPolygon(int[] xPoints,
int[] yPoints,
int nPoints) |
void |
drawPolygon(java.awt.Polygon p) |
void |
drawPolyline(int[] xPoints,
int[] yPoints,
int nPoints) |
void |
drawRect(int x,
int y,
int width,
int height) |
void |
drawRenderableImage(java.awt.image.renderable.RenderableImage img,
java.awt.geom.AffineTransform tr) |
void |
drawRenderedImage(java.awt.image.RenderedImage img,
java.awt.geom.AffineTransform tr) |
void |
drawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight) |
void |
drawString(java.text.AttributedCharacterIterator iterator,
float x,
float y) |
void |
drawString(java.text.AttributedCharacterIterator iterator,
int x,
int y) |
void |
drawString(java.lang.String str,
float x,
float y) |
void |
drawString(java.lang.String str,
int x,
int y) |
void |
endGroup() |
void |
fill(java.awt.Shape s) |
void |
fill(java.awt.Shape s,
boolean createCopy)
Fill the specified Shape.
|
void |
fillArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle) |
void |
fillOval(int x,
int y,
int width,
int height) |
void |
fillPolygon(int[] xPoints,
int[] yPoints,
int nPoints) |
void |
fillPolygon(java.awt.Polygon p) |
void |
fillRect(int x,
int y,
int width,
int height) |
void |
fillRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight) |
java.awt.Color |
getBackground() |
java.awt.Shape |
getClip() |
java.awt.Rectangle |
getClipBounds() |
java.awt.Color |
getColor() |
java.awt.Composite |
getComposite() |
GraphicsStyle |
getContext() |
java.awt.GraphicsConfiguration |
getDeviceConfiguration() |
java.awt.Font |
getFont() |
java.awt.FontMetrics |
getFontMetrics(java.awt.Font f) |
java.awt.font.FontRenderContext |
getFontRenderContext() |
java.util.List<GraphicsOp> |
getGraphicsOps()
Returns a
CommandSequence representing all calls that were issued to this VectorGraphics2D object. |
java.awt.Paint |
getPaint() |
java.lang.Object |
getRenderingHint(java.awt.RenderingHints.Key hintKey) |
java.awt.RenderingHints |
getRenderingHints() |
java.awt.Stroke |
getStroke() |
java.awt.geom.AffineTransform |
getTransform() |
private java.awt.image.BufferedImage |
getTransformedImage(java.awt.Image image,
java.awt.geom.AffineTransform tr)
Returns a transformed version of an image.
|
java.awt.Color |
getXORMode()
Returns the current XOR background color.
|
boolean |
hit(java.awt.Rectangle rect,
java.awt.Shape s,
boolean onStroke) |
protected boolean |
isDisposed() |
private java.lang.RuntimeException |
notImpl() |
void |
replay(java.awt.Graphics2D g) |
void |
resumeRecording() |
void |
rotate(double theta) |
void |
rotate(double theta,
double x,
double y) |
void |
scale(double sx,
double sy) |
void |
setBackground(java.awt.Color color) |
void |
setClip(int x,
int y,
int width,
int height) |
void |
setClip(java.awt.Shape clip) |
void |
setColor(java.awt.Color c) |
void |
setComposite(java.awt.Composite comp) |
void |
setFont(java.awt.Font font) |
void |
setPaint(java.awt.Paint paint) |
void |
setPaintMode() |
void |
setRenderingHint(java.awt.RenderingHints.Key hintKey,
java.lang.Object hintValue) |
void |
setRenderingHints(java.util.Map<?,?> hints) |
void |
setStroke(java.awt.Stroke s) |
void |
setTransform(java.awt.geom.AffineTransform tx) |
void |
setXORMode(java.awt.Color backColor) |
void |
shear(double shx,
double shy) |
void |
startGroup() |
void |
suspendRecording() |
void |
transform(java.awt.geom.AffineTransform Tx) |
void |
translate(double tx,
double ty) |
void |
translate(int x,
int y) |
private GraphicsStyle ctx
private final java.awt.GraphicsConfiguration deviceConfig
private boolean disposed
private final java.awt.font.FontRenderContext fontRenderContext
private final java.util.List<GraphicsOp> ops
private int suspendRecordingCounter
private void add(GraphicsOp op)
public void addRenderingHints(java.util.Map<?,?> hints)
addRenderingHints
in class java.awt.Graphics2D
public void clearRect(int x, int y, int width, int height)
clearRect
in class java.awt.Graphics
public void clip(java.awt.Shape s)
clip
in class java.awt.Graphics2D
public void clipRect(int x, int y, int width, int height)
clipRect
in class java.awt.Graphics
public java.lang.Object clone() throws java.lang.CloneNotSupportedException
clone
in class java.lang.Object
java.lang.CloneNotSupportedException
public void copyArea(int x, int y, int width, int height, int dx, int dy)
copyArea
in class java.awt.Graphics
public java.awt.Graphics create()
create
in class java.awt.Graphics
public void dispose()
dispose
in class java.awt.Graphics
public void draw(java.awt.Shape s)
draw
in class java.awt.Graphics2D
public void draw(java.awt.Shape s, boolean createCopy)
s
- The shape to draw.createCopy
- If true, a copy of the shape will be made so that if it changes
after the call, the recorded operation will still use the copy of the shape
at the time of the call to draw().
This should be set to true, unless it is known that the shape will never
be changed (i.e. if it is created internally) or if any changes are intentionally
meant to affect later application of the recorded operation.public void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
drawArc
in class java.awt.Graphics
public void drawGlyphVector(java.awt.font.GlyphVector g, float x, float y)
drawGlyphVector
in class java.awt.Graphics2D
public void drawImage(java.awt.image.BufferedImage img, java.awt.image.BufferedImageOp op, int x, int y)
drawImage
in class java.awt.Graphics2D
public boolean drawImage(java.awt.Image img, java.awt.geom.AffineTransform tr, java.awt.image.ImageObserver obs)
drawImage
in class java.awt.Graphics2D
public boolean drawImage(java.awt.Image img, int x, int y, java.awt.Color bgcolor, java.awt.image.ImageObserver observer)
drawImage
in class java.awt.Graphics
public boolean drawImage(java.awt.Image img, int x, int y, java.awt.image.ImageObserver observer)
drawImage
in class java.awt.Graphics
public boolean drawImage(java.awt.Image img, int x, int y, int width, int height, java.awt.Color bgcolor, java.awt.image.ImageObserver observer)
drawImage
in class java.awt.Graphics
public boolean drawImage(java.awt.Image img, int x, int y, int width, int height, java.awt.image.ImageObserver observer)
drawImage
in class java.awt.Graphics
public boolean drawImage(java.awt.Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, java.awt.Color bgcolor, java.awt.image.ImageObserver observer)
drawImage
in class java.awt.Graphics
public boolean drawImage(java.awt.Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, java.awt.image.ImageObserver observer)
drawImage
in class java.awt.Graphics
public void drawLine(int x1, int y1, int x2, int y2)
drawLine
in class java.awt.Graphics
public void drawOval(int x, int y, int width, int height)
drawOval
in class java.awt.Graphics
public void drawPolygon(int[] xPoints, int[] yPoints, int nPoints)
drawPolygon
in class java.awt.Graphics
public void drawPolygon(java.awt.Polygon p)
drawPolygon
in class java.awt.Graphics
public void drawPolyline(int[] xPoints, int[] yPoints, int nPoints)
drawPolyline
in class java.awt.Graphics
public void drawRect(int x, int y, int width, int height)
drawRect
in class java.awt.Graphics
public void drawRenderableImage(java.awt.image.renderable.RenderableImage img, java.awt.geom.AffineTransform tr)
drawRenderableImage
in class java.awt.Graphics2D
public void drawRenderedImage(java.awt.image.RenderedImage img, java.awt.geom.AffineTransform tr)
drawRenderedImage
in class java.awt.Graphics2D
public void drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
drawRoundRect
in class java.awt.Graphics
public void drawString(java.text.AttributedCharacterIterator iterator, float x, float y)
drawString
in class java.awt.Graphics2D
public void drawString(java.text.AttributedCharacterIterator iterator, int x, int y)
drawString
in class java.awt.Graphics2D
public void drawString(java.lang.String str, float x, float y)
drawString
in class java.awt.Graphics2D
public void drawString(java.lang.String str, int x, int y)
drawString
in class java.awt.Graphics2D
public void endGroup()
public void fill(java.awt.Shape s)
fill
in class java.awt.Graphics2D
public void fill(java.awt.Shape s, boolean createCopy)
s
- The shape to fill.createCopy
- If true, a copy of the shape will be made so that if it changes
after the call, the recorded operation will still use the copy of the shape
at the time of the call to fill().
This should be set to true, unless it is known that the shape will never
be changed (i.e. if it is created internally) or if any changes are intentionally
meant to affect later application of the recorded operation.public void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)
fillArc
in class java.awt.Graphics
public void fillOval(int x, int y, int width, int height)
fillOval
in class java.awt.Graphics
public void fillPolygon(int[] xPoints, int[] yPoints, int nPoints)
fillPolygon
in class java.awt.Graphics
public void fillPolygon(java.awt.Polygon p)
fillPolygon
in class java.awt.Graphics
public void fillRect(int x, int y, int width, int height)
fillRect
in class java.awt.Graphics
public void fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
fillRoundRect
in class java.awt.Graphics
public java.awt.Color getBackground()
getBackground
in class java.awt.Graphics2D
public java.awt.Shape getClip()
getClip
in class java.awt.Graphics
public java.awt.Rectangle getClipBounds()
getClipBounds
in class java.awt.Graphics
public java.awt.Color getColor()
getColor
in class java.awt.Graphics
public java.awt.Composite getComposite()
getComposite
in class java.awt.Graphics2D
public GraphicsStyle getContext()
public java.awt.GraphicsConfiguration getDeviceConfiguration()
getDeviceConfiguration
in class java.awt.Graphics2D
public java.awt.Font getFont()
getFont
in class java.awt.Graphics
public java.awt.FontMetrics getFontMetrics(java.awt.Font f)
getFontMetrics
in class java.awt.Graphics
public java.awt.font.FontRenderContext getFontRenderContext()
getFontRenderContext
in class java.awt.Graphics2D
public java.util.List<GraphicsOp> getGraphicsOps()
CommandSequence
representing all calls that were issued to this VectorGraphics2D
object.public java.awt.Paint getPaint()
getPaint
in class java.awt.Graphics2D
public java.lang.Object getRenderingHint(java.awt.RenderingHints.Key hintKey)
getRenderingHint
in class java.awt.Graphics2D
public java.awt.RenderingHints getRenderingHints()
getRenderingHints
in class java.awt.Graphics2D
public java.awt.Stroke getStroke()
getStroke
in class java.awt.Graphics2D
public java.awt.geom.AffineTransform getTransform()
getTransform
in class java.awt.Graphics2D
private java.awt.image.BufferedImage getTransformedImage(java.awt.Image image, java.awt.geom.AffineTransform tr)
image
- Image to be transformedtr
- Affine transform to be applied@NotNull public java.awt.Color getXORMode()
GraphicsStyle.COLOR_EMPTY
then
XOR Mode is not in effect.public boolean hit(java.awt.Rectangle rect, java.awt.Shape s, boolean onStroke)
hit
in class java.awt.Graphics2D
protected boolean isDisposed()
private java.lang.RuntimeException notImpl()
public void replay(java.awt.Graphics2D g)
public void resumeRecording()
public void rotate(double theta)
rotate
in class java.awt.Graphics2D
public void rotate(double theta, double x, double y)
rotate
in class java.awt.Graphics2D
public void scale(double sx, double sy)
scale
in class java.awt.Graphics2D
public void setBackground(java.awt.Color color)
setBackground
in class java.awt.Graphics2D
public void setClip(int x, int y, int width, int height)
setClip
in class java.awt.Graphics
public void setClip(java.awt.Shape clip)
setClip
in class java.awt.Graphics
public void setColor(java.awt.Color c)
setColor
in class java.awt.Graphics
public void setComposite(java.awt.Composite comp)
setComposite
in class java.awt.Graphics2D
public void setFont(java.awt.Font font)
setFont
in class java.awt.Graphics
public void setPaint(java.awt.Paint paint)
setPaint
in class java.awt.Graphics2D
public void setPaintMode()
setPaintMode
in class java.awt.Graphics
public void setRenderingHint(java.awt.RenderingHints.Key hintKey, java.lang.Object hintValue)
setRenderingHint
in class java.awt.Graphics2D
public void setRenderingHints(java.util.Map<?,?> hints)
setRenderingHints
in class java.awt.Graphics2D
public void setStroke(java.awt.Stroke s)
setStroke
in class java.awt.Graphics2D
public void setTransform(java.awt.geom.AffineTransform tx)
setTransform
in class java.awt.Graphics2D
public void setXORMode(java.awt.Color backColor)
setXORMode
in class java.awt.Graphics
public void shear(double shx, double shy)
shear
in class java.awt.Graphics2D
public void startGroup()
public void suspendRecording()
public void transform(java.awt.geom.AffineTransform Tx)
transform
in class java.awt.Graphics2D
public void translate(double tx, double ty)
translate
in class java.awt.Graphics2D
public void translate(int x, int y)
translate
in class java.awt.Graphics2D