Class EscherGraphics
- java.lang.Object
-
- java.awt.Graphics
-
- org.apache.poi.hssf.usermodel.EscherGraphics
-
public class EscherGraphics extends java.awt.GraphicsTranslates Graphics calls into escher calls. The translation is lossy so many features are not supported and some just aren't implemented yet. If in doubt test the specific calls you wish to make. Graphics calls are always performed into an EscherGroup so one will need to be created.Important:
One important concept worth considering is that of font size. One of the difficulties in converting Graphics calls into escher drawing calls is that Excel does not have the concept of absolute pixel positions. It measures it's cell widths in 'characters' and the cell heights in points. Unfortunately it's not defined exactly what a type of character it's measuring. Presumably this is due to the fact that the Excel will be using different fonts on different platforms or even within the same platform.
Because of this constraint we've had to calculate the verticalPointsPerPixel. This the amount the font should be scaled by when you issue commands such as drawString(). A good way to calculate this is to use the follow formula:
multipler = groupHeightInPoints / heightOfGroupThe height of the group is calculated fairly simply by calculating the difference between the y coordinates of the bounding box of the shape. The height of the group can be calculated by using a convenience called
HSSFClientAnchor.getAnchorHeightInPoints().
-
-
Constructor Summary
Constructors Constructor Description EscherGraphics(HSSFShapeGroup escherGroup, HSSFWorkbook workbook, java.awt.Color forecolor, float verticalPointsPerPixel)Construct an escher graphics object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclearRect(int x, int y, int width, int height)voidclipRect(int x, int y, int width, int height)voidcopyArea(int x, int y, int width, int height, int dx, int dy)java.awt.Graphicscreate()voiddispose()voiddrawArc(int x, int y, int width, int height, int startAngle, int arcAngle)booleandrawImage(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)booleandrawImage(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)booleandrawImage(java.awt.Image image, int i, int j, int k, int l, java.awt.Color color, java.awt.image.ImageObserver imageobserver)booleandrawImage(java.awt.Image image, int i, int j, int k, int l, java.awt.image.ImageObserver imageobserver)booleandrawImage(java.awt.Image image, int i, int j, java.awt.Color color, java.awt.image.ImageObserver imageobserver)booleandrawImage(java.awt.Image image, int i, int j, java.awt.image.ImageObserver imageobserver)voiddrawLine(int x1, int y1, int x2, int y2)voiddrawLine(int x1, int y1, int x2, int y2, int width)voiddrawOval(int x, int y, int width, int height)voiddrawPolygon(int[] xPoints, int[] yPoints, int nPoints)voiddrawPolyline(int[] xPoints, int[] yPoints, int nPoints)voiddrawRect(int x, int y, int width, int height)voiddrawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)voiddrawString(java.lang.String str, int x, int y)voiddrawString(java.text.AttributedCharacterIterator iterator, int x, int y)voidfillArc(int x, int y, int width, int height, int startAngle, int arcAngle)voidfillOval(int x, int y, int width, int height)voidfillPolygon(int[] xPoints, int[] yPoints, int nPoints)Fills a (closed) polygon, as defined by a pair of arrays, which hold the x and y coordinates.voidfillRect(int x, int y, int width, int height)voidfillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)java.awt.ColorgetBackground()java.awt.ShapegetClip()java.awt.RectanglegetClipBounds()java.awt.ColorgetColor()java.awt.FontgetFont()java.awt.FontMetricsgetFontMetrics(java.awt.Font f)voidsetBackground(java.awt.Color background)voidsetClip(int x, int y, int width, int height)voidsetClip(java.awt.Shape shape)voidsetColor(java.awt.Color color)voidsetFont(java.awt.Font f)voidsetPaintMode()voidsetXORMode(java.awt.Color color)voidtranslate(int x, int y)
-
-
-
Constructor Detail
-
EscherGraphics
public EscherGraphics(HSSFShapeGroup escherGroup, HSSFWorkbook workbook, java.awt.Color forecolor, float verticalPointsPerPixel)
Construct an escher graphics object.- Parameters:
escherGroup- The escher group to write the graphics calls into.workbook- The workbook we are using.forecolor- The foreground color to use as default.verticalPointsPerPixel- The font multiplier. (See class description for information on how this works.).
-
-
Method Detail
-
clearRect
@NotImplemented public void clearRect(int x, int y, int width, int height)
- Specified by:
clearRectin classjava.awt.Graphics
-
clipRect
@NotImplemented public void clipRect(int x, int y, int width, int height)
- Specified by:
clipRectin classjava.awt.Graphics
-
copyArea
@NotImplemented public void copyArea(int x, int y, int width, int height, int dx, int dy)
- Specified by:
copyAreain classjava.awt.Graphics
-
create
public java.awt.Graphics create()
- Specified by:
createin classjava.awt.Graphics
-
dispose
public void dispose()
- Specified by:
disposein classjava.awt.Graphics
-
drawArc
@NotImplemented public void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
- Specified by:
drawArcin classjava.awt.Graphics
-
drawImage
@NotImplemented 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)
- Specified by:
drawImagein classjava.awt.Graphics
-
drawImage
@NotImplemented 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)
- Specified by:
drawImagein classjava.awt.Graphics
-
drawImage
public boolean drawImage(java.awt.Image image, int i, int j, int k, int l, java.awt.Color color, java.awt.image.ImageObserver imageobserver)- Specified by:
drawImagein classjava.awt.Graphics
-
drawImage
public boolean drawImage(java.awt.Image image, int i, int j, int k, int l, java.awt.image.ImageObserver imageobserver)- Specified by:
drawImagein classjava.awt.Graphics
-
drawImage
public boolean drawImage(java.awt.Image image, int i, int j, java.awt.Color color, java.awt.image.ImageObserver imageobserver)- Specified by:
drawImagein classjava.awt.Graphics
-
drawImage
public boolean drawImage(java.awt.Image image, int i, int j, java.awt.image.ImageObserver imageobserver)- Specified by:
drawImagein classjava.awt.Graphics
-
drawLine
public void drawLine(int x1, int y1, int x2, int y2)- Specified by:
drawLinein classjava.awt.Graphics
-
drawLine
public void drawLine(int x1, int y1, int x2, int y2, int width)
-
drawOval
public void drawOval(int x, int y, int width, int height)- Specified by:
drawOvalin classjava.awt.Graphics
-
drawPolygon
public void drawPolygon(int[] xPoints, int[] yPoints, int nPoints)- Specified by:
drawPolygonin classjava.awt.Graphics
-
drawPolyline
@NotImplemented public void drawPolyline(int[] xPoints, int[] yPoints, int nPoints)
- Specified by:
drawPolylinein classjava.awt.Graphics
-
drawRect
@NotImplemented public void drawRect(int x, int y, int width, int height)
- Overrides:
drawRectin classjava.awt.Graphics
-
drawRoundRect
@NotImplemented public void drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
- Specified by:
drawRoundRectin classjava.awt.Graphics
-
drawString
public void drawString(java.lang.String str, int x, int y)- Specified by:
drawStringin classjava.awt.Graphics
-
drawString
public void drawString(java.text.AttributedCharacterIterator iterator, int x, int y)- Specified by:
drawStringin classjava.awt.Graphics
-
fillArc
public void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)- Specified by:
fillArcin classjava.awt.Graphics
-
fillOval
public void fillOval(int x, int y, int width, int height)- Specified by:
fillOvalin classjava.awt.Graphics
-
fillPolygon
public void fillPolygon(int[] xPoints, int[] yPoints, int nPoints)Fills a (closed) polygon, as defined by a pair of arrays, which hold the x and y coordinates.This draws the polygon, with
nPointline segments. The firstnPoint - 1line segments are drawn between sequential points (xPoints[i],yPoints[i],xPoints[i+1],yPoints[i+1]). The final line segment is a closing one, from the last point to the first (assuming they are different).The area inside of the polygon is defined by using an even-odd fill rule (also known as the alternating rule), and the area inside of it is filled.
- Specified by:
fillPolygonin classjava.awt.Graphics- Parameters:
xPoints- array of thexcoordinates.yPoints- array of theycoordinates.nPoints- the total number of points in the polygon.- See Also:
Graphics.drawPolygon(int[], int[], int)
-
fillRect
public void fillRect(int x, int y, int width, int height)- Specified by:
fillRectin classjava.awt.Graphics
-
fillRoundRect
public void fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)- Specified by:
fillRoundRectin classjava.awt.Graphics
-
getClip
public java.awt.Shape getClip()
- Specified by:
getClipin classjava.awt.Graphics
-
getClipBounds
public java.awt.Rectangle getClipBounds()
- Specified by:
getClipBoundsin classjava.awt.Graphics
-
getColor
public java.awt.Color getColor()
- Specified by:
getColorin classjava.awt.Graphics
-
getFont
public java.awt.Font getFont()
- Specified by:
getFontin classjava.awt.Graphics
-
getFontMetrics
public java.awt.FontMetrics getFontMetrics(java.awt.Font f)
- Specified by:
getFontMetricsin classjava.awt.Graphics
-
setClip
public void setClip(int x, int y, int width, int height)- Specified by:
setClipin classjava.awt.Graphics
-
setClip
@NotImplemented public void setClip(java.awt.Shape shape)
- Specified by:
setClipin classjava.awt.Graphics
-
setColor
public void setColor(java.awt.Color color)
- Specified by:
setColorin classjava.awt.Graphics
-
setFont
public void setFont(java.awt.Font f)
- Specified by:
setFontin classjava.awt.Graphics
-
setPaintMode
@NotImplemented public void setPaintMode()
- Specified by:
setPaintModein classjava.awt.Graphics
-
setXORMode
@NotImplemented public void setXORMode(java.awt.Color color)
- Specified by:
setXORModein classjava.awt.Graphics
-
translate
@NotImplemented public void translate(int x, int y)
- Specified by:
translatein classjava.awt.Graphics
-
getBackground
public java.awt.Color getBackground()
-
setBackground
public void setBackground(java.awt.Color background)
-
-