Package com.itextpdf.svg.renderers
Class SvgDrawContext
java.lang.Object
com.itextpdf.svg.renderers.SvgDrawContext
The SvgDrawContext keeps a stack of
PdfCanvas instances, which represent all levels of XObjects that are added to the root canvas.
-
Constructor Summary
ConstructorsConstructorDescriptionSvgDrawContext(ResourceResolver resourceResolver, FontProvider fontProvider) Create an instance of the context that is used to store information when converting SVG. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddNamedObject(String name, ISvgNodeRenderer namedObject) Adds a named object to the draw context.voidaddNamedObjects(Map<String, ISvgNodeRenderer> namedObjects) * Adds a number of named object to the draw context.voidaddTextMove(float additionalMoveX, float additionalMoveY) Increment the stored text movevoidAdds an ID that has been referenced by a use element.voidaddViewPort(Rectangle viewPort) Adds a viewbox to the context.Gets the SVG CSS context.Retrieves the current top of the stack, without modifying the stack.Get the current canvas transformationGet the current viewbox.Gets the FontProvider to be used during the drawing operations.Get the text transformation that was last appliedgetNamedObject(String name) Get a named object based on its name.float[]Gets the ResourceResolver to be used during the drawing operations.Get the viewbox which is the root viewport for the current document.Gets list of temporary fonts from @font-face.float[]Get the stored current text movebooleanisIdUsedByUseTagBefore(String elementId) Returns true when this id has been used beforeRetrieves the current top of the stack, thereby taking the current item off the stack.voidPops the last template id from the stack.voidpushCanvas(PdfCanvas canvas) Adds aPdfCanvasto the stack (by definition its top), for use in drawing operations.booleanpushPatternId(String patternId) Add pattern id to stack.voidRemove the currently set view box.voidremoveUsedId(String elementId) Removes an ID that has been referenced by a use element.voidReset the stored text move to [0f,0f]voidsetCssContext(SvgCssContext cssContext) Sets the SVG CSS context.voidsetLastTextTransform(AffineTransform newTransform) Set the last text transformationvoidsetPreviousElementTextMove(float[] previousElementTextMove) voidsetTempFonts(FontSet tempFonts) Sets the FontSet.intsize()Get the current size of the stack, signifying the nesting level of the XObjects.
-
Constructor Details
-
SvgDrawContext
Create an instance of the context that is used to store information when converting SVG.- Parameters:
-
resourceResolver- instance ofResourceResolver -
fontProvider- instance ofFontProvider
-
-
Method Details
-
getCurrentCanvas
Retrieves the current top of the stack, without modifying the stack.- Returns:
- the current canvas that can be used for drawing operations.
-
popCanvas
Retrieves the current top of the stack, thereby taking the current item off the stack.- Returns:
- the current canvas that can be used for drawing operations.
-
pushCanvas
Adds aPdfCanvasto the stack (by definition its top), for use in drawing operations.- Parameters:
-
canvas- the new top of the stack
-
size
public int size()Get the current size of the stack, signifying the nesting level of the XObjects.- Returns:
- the current size of the stack.
-
addViewPort
Adds a viewbox to the context.- Parameters:
-
viewPort- rectangle representing the current viewbox
-
getCurrentViewPort
Get the current viewbox.- Returns:
- the viewbox as it is currently set
-
getRootViewPort
Get the viewbox which is the root viewport for the current document.- Returns:
- root viewbox.
-
removeCurrentViewPort
public void removeCurrentViewPort()Remove the currently set view box. -
addNamedObject
Adds a named object to the draw context. These objects can then be referenced from a different tag.- Parameters:
-
name- name of the object -
namedObject- object to be referenced
-
getNamedObject
Get a named object based on its name. If the name isn't listed, this method will return null.- Parameters:
-
name- name of the object you want to reference - Returns:
- the referenced object
-
getResourceResolver
Gets the ResourceResolver to be used during the drawing operations.- Returns:
- resource resolver instance
-
addNamedObjects
* Adds a number of named object to the draw context. These objects can then be referenced from a different tag.- Parameters:
-
namedObjects- Map containing the named objects keyed to their ID strings
-
getFontProvider
Gets the FontProvider to be used during the drawing operations.- Returns:
- font provider instance
-
getTempFonts
Gets list of temporary fonts from @font-face.- Returns:
- font set instance
-
setTempFonts
Sets the FontSet.- Parameters:
-
tempFonts- font set to be used during drawing operations
-
isIdUsedByUseTagBefore
Returns true when this id has been used before- Parameters:
-
elementId- element id to check - Returns:
- true if id has been encountered before through a use element
-
addUsedId
Adds an ID that has been referenced by a use element.- Parameters:
-
elementId- referenced element ID
-
removeUsedId
Removes an ID that has been referenced by a use element.- Parameters:
-
elementId- referenced element ID
-
getLastTextTransform
Get the text transformation that was last applied- Returns:
-
AffineTransformrepresenting the last text transformation
-
setLastTextTransform
Set the last text transformation- Parameters:
-
newTransform- last text transformation
-
getTextMove
public float[] getTextMove()Get the stored current text move- Returns:
- [horizontal text move, vertical text move]
-
resetTextMove
public void resetTextMove()Reset the stored text move to [0f,0f] -
addTextMove
public void addTextMove(float additionalMoveX, float additionalMoveY) Increment the stored text move- Parameters:
-
additionalMoveX- horizontal value to add -
additionalMoveY- vertical value to add
-
getCurrentCanvasTransform
Get the current canvas transformation- Returns:
-
the
AffineTransformrepresenting the current canvas transformation
-
getCssContext
Gets the SVG CSS context.- Returns:
- the SVG CSS context
-
setCssContext
Sets the SVG CSS context.- Parameters:
-
cssContext- the SVG CSS context
-
pushPatternId
Add pattern id to stack. Check if the id is already in the stack. If it is, then returnfalseand not add, if it is not - add and returntrue.- Parameters:
-
patternId- pattern id - Returns:
-
trueif pattern id was not on the stack and was pushed;falseif it is on the stack
-
popPatternId
public void popPatternId()Pops the last template id from the stack. -
setPreviousElementTextMove
public void setPreviousElementTextMove(float[] previousElementTextMove) -
getPreviousElementTextMove
public float[] getPreviousElementTextMove()
-