PdfPrinterGraphics2Dpublic class PdfGraphics2D
extends java.awt.Graphics2D
| Modifier and Type | Class | Description |
|---|---|---|
static class |
PdfGraphics2D.HyperLinkKey |
| Modifier and Type | Field | Description |
|---|---|---|
static int |
AFM_DIVISOR |
|
protected java.awt.Color |
background |
|
protected BaseFont |
baseFont |
|
protected java.util.HashMap<java.lang.String,BaseFont> |
baseFonts |
Storage for BaseFont objects created.
|
protected PdfContentByte |
cb |
|
protected java.awt.geom.Area |
clip |
|
protected int |
currentFillGState |
|
protected int |
currentStrokeGState |
|
protected boolean |
disposeCalled |
|
protected PdfGState[] |
fillGState |
|
protected java.awt.Font |
font |
|
protected FontMapper |
fontMapper |
|
protected float |
fontSize |
|
protected float |
height |
|
protected java.awt.Stroke |
originalStroke |
|
protected java.awt.Paint |
paint |
|
protected java.awt.RenderingHints |
rhints |
|
protected boolean |
strikethrough |
|
protected java.awt.Stroke |
stroke |
|
protected PdfGState[] |
strokeGState |
|
protected java.awt.geom.AffineTransform |
transform |
|
protected boolean |
underline |
|
protected float |
width |
| Constructor | Description |
|---|---|
PdfGraphics2D(PdfContentByte cb,
float width,
float height) |
|
PdfGraphics2D(PdfContentByte cb,
float width,
float height,
boolean onlyShapes) |
|
PdfGraphics2D(PdfContentByte cb,
float width,
float height,
FontMapper fontMapper) |
|
PdfGraphics2D(PdfContentByte cb,
float width,
float height,
FontMapper fontMapper,
boolean onlyShapes,
boolean convertImagesToJPEG,
float quality) |
Constructor for PDFGraphics2D.
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
addRenderingHints(java.util.Map<?,?> hints) |
|
static double |
asPoints(double d,
int i) |
Calculates position and/or stroke thickness depending on the font size
|
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) |
|
void |
copyArea(int x,
int y,
int width,
int height,
int dx,
int dy) |
|
java.awt.Graphics |
create() |
|
void |
dispose() |
|
protected void |
doAttributes(java.text.AttributedCharacterIterator iter) |
This routine goes through the attributes and sets the font
before calling the actual string drawing routine
|
void |
draw(java.awt.Shape s) |
|
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,
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) |
|
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 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,
java.awt.geom.AffineTransform xform,
java.awt.image.ImageObserver obs) |
|
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 |
drawPolyline(int[] x,
int[] y,
int nPoints) |
|
void |
drawRect(int x,
int y,
int width,
int height) |
|
void |
drawRenderableImage(java.awt.image.renderable.RenderableImage img,
java.awt.geom.AffineTransform xform) |
|
void |
drawRenderedImage(java.awt.image.RenderedImage img,
java.awt.geom.AffineTransform xform) |
|
void |
drawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight) |
|
void |
drawString(java.lang.String s,
float x,
float y) |
|
void |
drawString(java.lang.String s,
int x,
int y) |
|
void |
drawString(java.text.AttributedCharacterIterator iter,
float x,
float y) |
|
void |
drawString(java.text.AttributedCharacterIterator iterator,
int x,
int y) |
|
void |
fill(java.awt.Shape s) |
|
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 |
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() |
|
PdfContentByte |
getContent() |
|
java.awt.GraphicsConfiguration |
getDeviceConfiguration() |
|
java.awt.Font |
getFont() |
|
java.awt.FontMetrics |
getFontMetrics(java.awt.Font f) |
|
java.awt.font.FontRenderContext |
getFontRenderContext() |
|
java.awt.Paint |
getPaint() |
Method contributed by Alexej Suchov
|
java.lang.Object |
getRenderingHint(java.awt.RenderingHints.Key hintKey) |
|
java.awt.RenderingHints |
getRenderingHints() |
|
java.awt.Stroke |
getStroke() |
|
java.awt.geom.AffineTransform |
getTransform() |
|
boolean |
hit(java.awt.Rectangle rect,
java.awt.Shape s,
boolean onStroke) |
|
protected java.awt.geom.AffineTransform |
normalizeMatrix() |
|
static BaseColor |
prepareColor(java.awt.Color color) |
|
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 s) |
|
void |
setColor(java.awt.Color color) |
|
void |
setComposite(java.awt.Composite comp) |
Method contributed by Alexej Suchov
|
void |
setFont(java.awt.Font f) |
Sets the current font.
|
void |
setPaint(java.awt.Paint paint) |
Method contributed by Alexej Suchov
|
void |
setPaintMode() |
|
void |
setRenderingHint(java.awt.RenderingHints.Key hintKey,
java.lang.Object hintValue) |
Sets a rendering hint
|
void |
setRenderingHints(java.util.Map<?,?> hints) |
|
void |
setStroke(java.awt.Stroke s) |
|
void |
setTransform(java.awt.geom.AffineTransform t) |
|
void |
setXORMode(java.awt.Color c1) |
|
void |
shear(double shx,
double shy) |
|
void |
transform(java.awt.geom.AffineTransform tx) |
|
void |
translate(double tx,
double ty) |
|
void |
translate(int x,
int y) |
protected java.awt.Font font
protected BaseFont baseFont
protected float fontSize
protected java.awt.geom.AffineTransform transform
protected java.awt.Paint paint
protected java.awt.Color background
protected float width
protected float height
protected java.awt.geom.Area clip
protected java.awt.RenderingHints rhints
protected java.awt.Stroke stroke
protected java.awt.Stroke originalStroke
protected PdfContentByte cb
protected java.util.HashMap<java.lang.String,BaseFont> baseFonts
protected boolean disposeCalled
protected FontMapper fontMapper
protected boolean underline
protected boolean strikethrough
protected PdfGState[] fillGState
protected PdfGState[] strokeGState
protected int currentFillGState
protected int currentStrokeGState
public static final int AFM_DIVISOR
public PdfGraphics2D(PdfContentByte cb, float width, float height)
public PdfGraphics2D(PdfContentByte cb, float width, float height, FontMapper fontMapper)
public PdfGraphics2D(PdfContentByte cb, float width, float height, boolean onlyShapes)
public PdfGraphics2D(PdfContentByte cb, float width, float height, FontMapper fontMapper, boolean onlyShapes, boolean convertImagesToJPEG, float quality)
public void draw(java.awt.Shape s)
draw in class java.awt.Graphics2DGraphics2D.draw(Shape)public boolean drawImage(java.awt.Image img,
java.awt.geom.AffineTransform xform,
java.awt.image.ImageObserver obs)
drawImage in class java.awt.Graphics2DGraphics2D.drawImage(Image, AffineTransform, ImageObserver)public void drawImage(java.awt.image.BufferedImage img,
java.awt.image.BufferedImageOp op,
int x,
int y)
drawImage in class java.awt.Graphics2DGraphics2D.drawImage(BufferedImage, BufferedImageOp, int, int)public void drawRenderedImage(java.awt.image.RenderedImage img,
java.awt.geom.AffineTransform xform)
drawRenderedImage in class java.awt.Graphics2DGraphics2D.drawRenderedImage(RenderedImage, AffineTransform)public void drawRenderableImage(java.awt.image.renderable.RenderableImage img,
java.awt.geom.AffineTransform xform)
drawRenderableImage in class java.awt.Graphics2DGraphics2D.drawRenderableImage(RenderableImage, AffineTransform)public void drawString(java.lang.String s,
int x,
int y)
drawString in class java.awt.Graphics2DGraphics.drawString(String, int, int)public static double asPoints(double d,
int i)
d - value to be convertedi - font sizeprotected void doAttributes(java.text.AttributedCharacterIterator iter)
iter - public void drawString(java.lang.String s,
float x,
float y)
drawString in class java.awt.Graphics2DGraphics2D.drawString(String, float, float)public void drawString(java.text.AttributedCharacterIterator iterator,
int x,
int y)
drawString in class java.awt.Graphics2DGraphics.drawString(AttributedCharacterIterator, int, int)public void drawString(java.text.AttributedCharacterIterator iter,
float x,
float y)
drawString in class java.awt.Graphics2DGraphics2D.drawString(AttributedCharacterIterator, float, float)public void drawGlyphVector(java.awt.font.GlyphVector g,
float x,
float y)
drawGlyphVector in class java.awt.Graphics2DGraphics2D.drawGlyphVector(GlyphVector, float, float)public void fill(java.awt.Shape s)
fill in class java.awt.Graphics2DGraphics2D.fill(Shape)public boolean hit(java.awt.Rectangle rect,
java.awt.Shape s,
boolean onStroke)
hit in class java.awt.Graphics2DGraphics2D.hit(Rectangle, Shape, boolean)public java.awt.GraphicsConfiguration getDeviceConfiguration()
getDeviceConfiguration in class java.awt.Graphics2DGraphics2D.getDeviceConfiguration()public void setComposite(java.awt.Composite comp)
setComposite in class java.awt.Graphics2DGraphics2D.setComposite(Composite)public void setPaint(java.awt.Paint paint)
setPaint in class java.awt.Graphics2DGraphics2D.setPaint(Paint)public void setStroke(java.awt.Stroke s)
setStroke in class java.awt.Graphics2DGraphics2D.setStroke(Stroke)public void setRenderingHint(java.awt.RenderingHints.Key hintKey,
java.lang.Object hintValue)
setRenderingHint in class java.awt.Graphics2DhintKey - hintValue - public java.lang.Object getRenderingHint(java.awt.RenderingHints.Key hintKey)
getRenderingHint in class java.awt.Graphics2DhintKey - a keypublic void setRenderingHints(java.util.Map<?,?> hints)
setRenderingHints in class java.awt.Graphics2DGraphics2D.setRenderingHints(Map)public void addRenderingHints(java.util.Map<?,?> hints)
addRenderingHints in class java.awt.Graphics2DGraphics2D.addRenderingHints(Map)public java.awt.RenderingHints getRenderingHints()
getRenderingHints in class java.awt.Graphics2DGraphics2D.getRenderingHints()public void translate(int x,
int y)
translate in class java.awt.Graphics2DGraphics.translate(int, int)public void translate(double tx,
double ty)
translate in class java.awt.Graphics2DGraphics2D.translate(double, double)public void rotate(double theta)
rotate in class java.awt.Graphics2DGraphics2D.rotate(double)public void rotate(double theta,
double x,
double y)
rotate in class java.awt.Graphics2DGraphics2D.rotate(double, double, double)public void scale(double sx,
double sy)
scale in class java.awt.Graphics2DGraphics2D.scale(double, double)public void shear(double shx,
double shy)
shear in class java.awt.Graphics2DGraphics2D.shear(double, double)public void transform(java.awt.geom.AffineTransform tx)
transform in class java.awt.Graphics2DGraphics2D.transform(AffineTransform)public void setTransform(java.awt.geom.AffineTransform t)
setTransform in class java.awt.Graphics2DGraphics2D.setTransform(AffineTransform)public java.awt.geom.AffineTransform getTransform()
getTransform in class java.awt.Graphics2DGraphics2D.getTransform()public java.awt.Paint getPaint()
getPaint in class java.awt.Graphics2DGraphics2D.getPaint()public java.awt.Composite getComposite()
getComposite in class java.awt.Graphics2DGraphics2D.getComposite()public void setBackground(java.awt.Color color)
setBackground in class java.awt.Graphics2DGraphics2D.setBackground(Color)public java.awt.Color getBackground()
getBackground in class java.awt.Graphics2DGraphics2D.getBackground()public java.awt.Stroke getStroke()
getStroke in class java.awt.Graphics2DGraphics2D.getStroke()public java.awt.font.FontRenderContext getFontRenderContext()
getFontRenderContext in class java.awt.Graphics2DGraphics2D.getFontRenderContext()public java.awt.Graphics create()
create in class java.awt.GraphicsGraphics.create()public PdfContentByte getContent()
public java.awt.Color getColor()
getColor in class java.awt.GraphicsGraphics.getColor()public void setColor(java.awt.Color color)
setColor in class java.awt.GraphicsGraphics.setColor(Color)public void setPaintMode()
setPaintMode in class java.awt.GraphicsGraphics.setPaintMode()public void setXORMode(java.awt.Color c1)
setXORMode in class java.awt.GraphicsGraphics.setXORMode(Color)public java.awt.Font getFont()
getFont in class java.awt.GraphicsGraphics.getFont()public void setFont(java.awt.Font f)
setFont in class java.awt.Graphicspublic java.awt.FontMetrics getFontMetrics(java.awt.Font f)
getFontMetrics in class java.awt.GraphicsGraphics.getFontMetrics(Font)public java.awt.Rectangle getClipBounds()
getClipBounds in class java.awt.GraphicsGraphics.getClipBounds()public void clipRect(int x,
int y,
int width,
int height)
clipRect in class java.awt.GraphicsGraphics.clipRect(int, int, int, int)public void setClip(int x,
int y,
int width,
int height)
setClip in class java.awt.GraphicsGraphics.setClip(int, int, int, int)public void clip(java.awt.Shape s)
clip in class java.awt.Graphics2DGraphics2D.clip(Shape)public java.awt.Shape getClip()
getClip in class java.awt.GraphicsGraphics.getClip()public void setClip(java.awt.Shape s)
setClip in class java.awt.GraphicsGraphics.setClip(Shape)public void copyArea(int x,
int y,
int width,
int height,
int dx,
int dy)
copyArea in class java.awt.GraphicsGraphics.copyArea(int, int, int, int, int, int)public void drawLine(int x1,
int y1,
int x2,
int y2)
drawLine in class java.awt.GraphicsGraphics.drawLine(int, int, int, int)public void drawRect(int x,
int y,
int width,
int height)
drawRect in class java.awt.GraphicsGraphics.fillRect(int, int, int, int)public void fillRect(int x,
int y,
int width,
int height)
fillRect in class java.awt.GraphicsGraphics.fillRect(int, int, int, int)public void clearRect(int x,
int y,
int width,
int height)
clearRect in class java.awt.GraphicsGraphics.clearRect(int, int, int, int)public void drawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
drawRoundRect in class java.awt.GraphicsGraphics.drawRoundRect(int, int, int, int, int, int)public void fillRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
fillRoundRect in class java.awt.GraphicsGraphics.fillRoundRect(int, int, int, int, int, int)public void drawOval(int x,
int y,
int width,
int height)
drawOval in class java.awt.GraphicsGraphics.drawOval(int, int, int, int)public void fillOval(int x,
int y,
int width,
int height)
fillOval in class java.awt.GraphicsGraphics.fillOval(int, int, int, int)public void drawArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
drawArc in class java.awt.GraphicsGraphics.drawArc(int, int, int, int, int, int)public void fillArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
fillArc in class java.awt.GraphicsGraphics.fillArc(int, int, int, int, int, int)public void drawPolyline(int[] x,
int[] y,
int nPoints)
drawPolyline in class java.awt.GraphicsGraphics.drawPolyline(int[], int[], int)public void drawPolygon(int[] xPoints,
int[] yPoints,
int nPoints)
drawPolygon in class java.awt.GraphicsGraphics.drawPolygon(int[], int[], int)public void fillPolygon(int[] xPoints,
int[] yPoints,
int nPoints)
fillPolygon in class java.awt.GraphicsGraphics.fillPolygon(int[], int[], int)public boolean drawImage(java.awt.Image img,
int x,
int y,
java.awt.image.ImageObserver observer)
drawImage in class java.awt.GraphicsGraphics.drawImage(Image, int, int, ImageObserver)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.GraphicsGraphics.drawImage(Image, int, int, int, int, ImageObserver)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.GraphicsGraphics.drawImage(Image, int, int, Color, ImageObserver)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.GraphicsGraphics.drawImage(Image, int, int, int, int, Color, ImageObserver)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.GraphicsGraphics.drawImage(Image, int, int, int, int, int, int, int, int, ImageObserver)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.GraphicsGraphics.drawImage(Image, int, int, int, int, int, int, int, int, Color, ImageObserver)public void dispose()
dispose in class java.awt.GraphicsGraphics.dispose()protected java.awt.geom.AffineTransform normalizeMatrix()
public static BaseColor prepareColor(java.awt.Color color)
Copyright © 1998–2018. All rights reserved.