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.Graphics2Dpublic void clearRect(int x,
int y,
int width,
int height)
clearRect in class java.awt.Graphicspublic void clip(java.awt.Shape s)
clip in class java.awt.Graphics2Dpublic void clipRect(int x,
int y,
int width,
int height)
clipRect in class java.awt.Graphicspublic java.lang.Object clone()
throws java.lang.CloneNotSupportedException
clone in class java.lang.Objectjava.lang.CloneNotSupportedExceptionpublic void copyArea(int x,
int y,
int width,
int height,
int dx,
int dy)
copyArea in class java.awt.Graphicspublic java.awt.Graphics create()
create in class java.awt.Graphicspublic void dispose()
dispose in class java.awt.Graphicspublic void draw(java.awt.Shape s)
draw in class java.awt.Graphics2Dpublic 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.Graphicspublic void drawGlyphVector(java.awt.font.GlyphVector g,
float x,
float y)
drawGlyphVector in class java.awt.Graphics2Dpublic void drawImage(java.awt.image.BufferedImage img,
java.awt.image.BufferedImageOp op,
int x,
int y)
drawImage in class java.awt.Graphics2Dpublic boolean drawImage(java.awt.Image img,
java.awt.geom.AffineTransform tr,
java.awt.image.ImageObserver obs)
drawImage in class java.awt.Graphics2Dpublic boolean drawImage(java.awt.Image img,
int x,
int y,
java.awt.Color bgcolor,
java.awt.image.ImageObserver observer)
drawImage in class java.awt.Graphicspublic boolean drawImage(java.awt.Image img,
int x,
int y,
java.awt.image.ImageObserver observer)
drawImage in class java.awt.Graphicspublic 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.Graphicspublic boolean drawImage(java.awt.Image img,
int x,
int y,
int width,
int height,
java.awt.image.ImageObserver observer)
drawImage in class java.awt.Graphicspublic 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.Graphicspublic 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.Graphicspublic void drawLine(int x1,
int y1,
int x2,
int y2)
drawLine in class java.awt.Graphicspublic void drawOval(int x,
int y,
int width,
int height)
drawOval in class java.awt.Graphicspublic void drawPolygon(int[] xPoints,
int[] yPoints,
int nPoints)
drawPolygon in class java.awt.Graphicspublic void drawPolygon(java.awt.Polygon p)
drawPolygon in class java.awt.Graphicspublic void drawPolyline(int[] xPoints,
int[] yPoints,
int nPoints)
drawPolyline in class java.awt.Graphicspublic void drawRect(int x,
int y,
int width,
int height)
drawRect in class java.awt.Graphicspublic void drawRenderableImage(java.awt.image.renderable.RenderableImage img,
java.awt.geom.AffineTransform tr)
drawRenderableImage in class java.awt.Graphics2Dpublic void drawRenderedImage(java.awt.image.RenderedImage img,
java.awt.geom.AffineTransform tr)
drawRenderedImage in class java.awt.Graphics2Dpublic void drawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
drawRoundRect in class java.awt.Graphicspublic void drawString(java.text.AttributedCharacterIterator iterator,
float x,
float y)
drawString in class java.awt.Graphics2Dpublic void drawString(java.text.AttributedCharacterIterator iterator,
int x,
int y)
drawString in class java.awt.Graphics2Dpublic void drawString(java.lang.String str,
float x,
float y)
drawString in class java.awt.Graphics2Dpublic void drawString(java.lang.String str,
int x,
int y)
drawString in class java.awt.Graphics2Dpublic void endGroup()
public void fill(java.awt.Shape s)
fill in class java.awt.Graphics2Dpublic 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.Graphicspublic void fillOval(int x,
int y,
int width,
int height)
fillOval in class java.awt.Graphicspublic void fillPolygon(int[] xPoints,
int[] yPoints,
int nPoints)
fillPolygon in class java.awt.Graphicspublic void fillPolygon(java.awt.Polygon p)
fillPolygon in class java.awt.Graphicspublic void fillRect(int x,
int y,
int width,
int height)
fillRect in class java.awt.Graphicspublic void fillRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
fillRoundRect in class java.awt.Graphicspublic java.awt.Color getBackground()
getBackground in class java.awt.Graphics2Dpublic java.awt.Shape getClip()
getClip in class java.awt.Graphicspublic java.awt.Rectangle getClipBounds()
getClipBounds in class java.awt.Graphicspublic java.awt.Color getColor()
getColor in class java.awt.Graphicspublic java.awt.Composite getComposite()
getComposite in class java.awt.Graphics2Dpublic GraphicsStyle getContext()
public java.awt.GraphicsConfiguration getDeviceConfiguration()
getDeviceConfiguration in class java.awt.Graphics2Dpublic java.awt.Font getFont()
getFont in class java.awt.Graphicspublic java.awt.FontMetrics getFontMetrics(java.awt.Font f)
getFontMetrics in class java.awt.Graphicspublic java.awt.font.FontRenderContext getFontRenderContext()
getFontRenderContext in class java.awt.Graphics2Dpublic 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.Graphics2Dpublic java.lang.Object getRenderingHint(java.awt.RenderingHints.Key hintKey)
getRenderingHint in class java.awt.Graphics2Dpublic java.awt.RenderingHints getRenderingHints()
getRenderingHints in class java.awt.Graphics2Dpublic java.awt.Stroke getStroke()
getStroke in class java.awt.Graphics2Dpublic java.awt.geom.AffineTransform getTransform()
getTransform in class java.awt.Graphics2Dprivate 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.Graphics2Dprotected 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.Graphics2Dpublic void rotate(double theta,
double x,
double y)
rotate in class java.awt.Graphics2Dpublic void scale(double sx,
double sy)
scale in class java.awt.Graphics2Dpublic void setBackground(java.awt.Color color)
setBackground in class java.awt.Graphics2Dpublic void setClip(int x,
int y,
int width,
int height)
setClip in class java.awt.Graphicspublic void setClip(java.awt.Shape clip)
setClip in class java.awt.Graphicspublic void setColor(java.awt.Color c)
setColor in class java.awt.Graphicspublic void setComposite(java.awt.Composite comp)
setComposite in class java.awt.Graphics2Dpublic void setFont(java.awt.Font font)
setFont in class java.awt.Graphicspublic void setPaint(java.awt.Paint paint)
setPaint in class java.awt.Graphics2Dpublic void setPaintMode()
setPaintMode in class java.awt.Graphicspublic void setRenderingHint(java.awt.RenderingHints.Key hintKey,
java.lang.Object hintValue)
setRenderingHint in class java.awt.Graphics2Dpublic void setRenderingHints(java.util.Map<?,?> hints)
setRenderingHints in class java.awt.Graphics2Dpublic void setStroke(java.awt.Stroke s)
setStroke in class java.awt.Graphics2Dpublic void setTransform(java.awt.geom.AffineTransform tx)
setTransform in class java.awt.Graphics2Dpublic void setXORMode(java.awt.Color backColor)
setXORMode in class java.awt.Graphicspublic void shear(double shx,
double shy)
shear in class java.awt.Graphics2Dpublic void startGroup()
public void suspendRecording()
public void transform(java.awt.geom.AffineTransform Tx)
transform in class java.awt.Graphics2Dpublic void translate(double tx,
double ty)
translate in class java.awt.Graphics2Dpublic void translate(int x,
int y)
translate in class java.awt.Graphics2D