Package org.apache.fop.afp.modca
Class GraphicsObject
- All Implemented Interfaces:
Completable,Startable,Streamable
Top-level GOCA graphics object.
Acts as container and factory of all other graphic objects
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.fop.afp.modca.AbstractAFPObject
AbstractAFPObject.Category, AbstractAFPObject.Type -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<GraphicsData> list of objects contained within this containerFields inherited from class org.apache.fop.afp.modca.AbstractDataObject
factory, objectEnvironmentGroupFields inherited from class org.apache.fop.afp.modca.AbstractNamedAFPObject
nameFields inherited from class org.apache.fop.afp.modca.AbstractTripletStructuredObject
tripletsFields inherited from class org.apache.fop.afp.modca.AbstractAFPObject
LOG, SF_CLASS, SF_HEADER_LENGTH -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddBox(int[] coords) Adds a box at the given coordinatesvoidaddFillet(int[] coords) Adds a fillet (curve) at the given coordinatesvoidaddFillet(int[] coords, boolean relative) Adds a fillet (curve) at the given coordinatesvoidaddFullArc(int x, int y, int mh, int mhr) Adds a full arcvoidaddImage(int x, int y, int width, int height, byte[] imgData) Adds an imagevoidaddLine(int[] coords) Adds a line at the given x/y coordinatesvoidaddLine(int[] coords, boolean relative) Adds a line at the given x/y coordinatesvoidaddObject(StructuredData object) voidaddString(String str, int x, int y, CharacterSet charSet) Adds a stringvoidBegins a graphics area (start of fill)voidendArea()Ends a graphics area (end of fill)voidEnds the prolog.voidCreates a new graphics segmentvoidsetArcParams(int xmaj, int ymin, int xmin, int ymaj) Sets the arc parametersvoidsetCharacterSet(int characterSet) Sets the character set to usevoidSets the current colorvoidsetColorConverter(org.apache.xmlgraphics.java2d.color.ColorConverter colorConverter) Sets the color convertervoidsetComplete(boolean complete) Sets whether or not this object is complete or notvoidsetCurrentPosition(int[] coords) Sets the current positionvoidsetFill(boolean fill) Sets whether the following shape is to be filled.voidsetLineType(byte lineType) Sets the line typevoidsetLineWidth(float lineWidth) Sets the line widthvoidsetLineWidth(int lineWidth) Sets the line widthvoidsetPatternSymbol(byte patternSymbol) Sets the fill pattern of the next shape.voidsetViewport(AFPDataObjectInfo dataObjectInfo) Sets the object view port (area position and size).toString()protected voidHelper method to write the contents of the Object.protected voidwriteEnd(OutputStream os) Helper method to write the end of the Object.protected voidHelper method to write the start of the Object.Methods inherited from class org.apache.fop.afp.modca.AbstractDataObject
getObjectEnvironmentGroup, isComplete, isStarted, setStartedMethods inherited from class org.apache.fop.afp.modca.AbstractNamedAFPObject
copySF, getName, getNameBytes, getNameLength, setNameMethods inherited from class org.apache.fop.afp.modca.AbstractTripletStructuredObject
addTriplet, addTriplets, getFullyQualifiedName, getTripletDataLength, getTriplets, hasTriplet, hasTriplets, setComment, setFullyQualifiedName, setFullyQualifiedName, setObjectClassification, writeTripletsMethods inherited from class org.apache.fop.afp.modca.AbstractStructuredObject
writeToStreamMethods inherited from class org.apache.fop.afp.modca.AbstractAFPObject
copySF, truncate, writeChunksToStream, writeObjects
-
Field Details
-
objects
list of objects contained within this container
-
-
Constructor Details
-
GraphicsObject
Default constructor- Parameters:
factory- the object factoryname- the name of graphics object
-
-
Method Details
-
setViewport
Sets the object view port (area position and size).- Overrides:
setViewportin classAbstractDataObject- Parameters:
dataObjectInfo- the object area info
-
addObject
- Parameters:
object- the structured data
-
setColor
Sets the current color- Parameters:
color- the active color to use
-
setColorConverter
public void setColorConverter(org.apache.xmlgraphics.java2d.color.ColorConverter colorConverter) Sets the color converter- Parameters:
colorConverter- ColorConverter to filter the color when creating a GraphicsSetProcessColor.
-
setCurrentPosition
public void setCurrentPosition(int[] coords) Sets the current position- Parameters:
coords- the x and y coordinates of the current position
-
setLineWidth
public void setLineWidth(int lineWidth) Sets the line width- Parameters:
lineWidth- the line width multiplier
-
setLineWidth
public void setLineWidth(float lineWidth) Sets the line width- Parameters:
lineWidth- the line width multiplier
-
setLineType
public void setLineType(byte lineType) Sets the line type- Parameters:
lineType- the line type
-
setFill
public void setFill(boolean fill) Sets whether the following shape is to be filled.- Parameters:
fill- true if the following shape is to be filled
-
setPatternSymbol
public void setPatternSymbol(byte patternSymbol) Sets the fill pattern of the next shape.- Parameters:
patternSymbol- the fill pattern of the next shape
-
setCharacterSet
public void setCharacterSet(int characterSet) Sets the character set to use- Parameters:
characterSet- the character set (font) reference
-
addLine
public void addLine(int[] coords) Adds a line at the given x/y coordinates- Parameters:
coords- the x/y coordinates (can be a series)
-
addLine
public void addLine(int[] coords, boolean relative) Adds a line at the given x/y coordinates- Parameters:
coords- the x/y coordinates (can be a series)relative- relative true for a line at current position (relative to)
-
addBox
public void addBox(int[] coords) Adds a box at the given coordinates- Parameters:
coords- the x/y coordinates
-
addFillet
public void addFillet(int[] coords) Adds a fillet (curve) at the given coordinates- Parameters:
coords- the x/y coordinates
-
addFillet
public void addFillet(int[] coords, boolean relative) Adds a fillet (curve) at the given coordinates- Parameters:
coords- the x/y coordinatesrelative- relative true for a fillet (curve) at current position (relative to)
-
setArcParams
public void setArcParams(int xmaj, int ymin, int xmin, int ymaj) Sets the arc parameters- Parameters:
xmaj- the maximum value of the x coordinateymin- the minimum value of the y coordinatexmin- the minimum value of the x coordinateymaj- the maximum value of the y coordinate
-
addFullArc
public void addFullArc(int x, int y, int mh, int mhr) Adds a full arc- Parameters:
x- the x coordinatey- the y coordinatemh- the integer portion of the multipliermhr- the fractional portion of the multiplier
-
addImage
public void addImage(int x, int y, int width, int height, byte[] imgData) Adds an image- Parameters:
x- the x coordinatey- the y coordinatewidth- the image widthheight- the image heightimgData- the image data
-
addString
Adds a string- Parameters:
str- the stringx- the x coordinatey- the y coordinatecharSet- the character set associated with the string
-
beginArea
public void beginArea()Begins a graphics area (start of fill) -
endArea
public void endArea()Ends a graphics area (end of fill) -
endProlog
public void endProlog()Ends the prolog. -
toString
- Overrides:
toStringin classAbstractNamedAFPObject
-
newSegment
public void newSegment()Creates a new graphics segment -
setComplete
public void setComplete(boolean complete) Sets whether or not this object is complete or not- Specified by:
setCompletein interfaceCompletable- Overrides:
setCompletein classAbstractDataObject- Parameters:
complete- true if this object is complete
-
writeStart
Helper method to write the start of the Object.- Overrides:
writeStartin classAbstractDataObject- Parameters:
os- The stream to write to- Throws:
IOException- throws an I/O exception if one occurred
-
writeContent
Helper method to write the contents of the Object.- Overrides:
writeContentin classAbstractDataObject- Parameters:
os- The stream to write to- Throws:
IOException- throws an I/O exception if one occurred
-
writeEnd
Helper method to write the end of the Object.- Overrides:
writeEndin classAbstractStructuredObject- Parameters:
os- The stream to write to- Throws:
IOException- an I/O exception if one occurred
-