Uses of Class
com.itextpdf.text.pdf.parser.GraphicsState
-
Packages that use GraphicsState Package Description com.itextpdf.text.pdf.parser -
-
Uses of GraphicsState in com.itextpdf.text.pdf.parser
Fields in com.itextpdf.text.pdf.parser declared as GraphicsState Modifier and Type Field Description private GraphicsState
ImageRenderInfo. gs
The graphics state that was in effect when the image was renderedprivate GraphicsState
PathPaintingRenderInfo. gs
private GraphicsState
TextRenderInfo. gs
Fields in com.itextpdf.text.pdf.parser with type parameters of type GraphicsState Modifier and Type Field Description private java.util.Stack<GraphicsState>
PdfContentStreamProcessor. gsStack
Stack keeping track of the graphics state.Methods in com.itextpdf.text.pdf.parser that return GraphicsState Modifier and Type Method Description GraphicsState
PdfContentStreamProcessor. gs()
Returns the current graphics state.Methods in com.itextpdf.text.pdf.parser with parameters of type GraphicsState Modifier and Type Method Description protected static ImageRenderInfo
ImageRenderInfo. createForEmbeddedImage(GraphicsState gs, InlineImageInfo inlineImageInfo, PdfDictionary colorSpaceDictionary, java.util.Collection<MarkedContentInfo> markedContentInfo)
Create an ImageRenderInfo object based on inline image data.static ImageRenderInfo
ImageRenderInfo. createForXObject(GraphicsState gs, PdfIndirectReference ref, PdfDictionary colorSpaceDictionary)
Create an ImageRenderInfo object based on an XObject (this is the most common way of including an image in PDF)static ImageRenderInfo
ImageRenderInfo. createForXObject(GraphicsState gs, PdfIndirectReference ref, PdfDictionary colorSpaceDictionary, java.util.Collection<MarkedContentInfo> markedContentInfo)
Create an ImageRenderInfo object based on an XObject (this is the most common way of including an image in PDF)Constructors in com.itextpdf.text.pdf.parser with parameters of type GraphicsState Constructor Description GraphicsState(GraphicsState source)
Copy constructor.ImageRenderInfo(GraphicsState gs, InlineImageInfo inlineImageInfo, PdfDictionary colorSpaceDictionary, java.util.Collection<MarkedContentInfo> markedContentInfo)
ImageRenderInfo(GraphicsState gs, PdfIndirectReference ref, PdfDictionary colorSpaceDictionary, java.util.Collection<MarkedContentInfo> markedContentInfo)
PathPaintingRenderInfo(int operation, int rule, GraphicsState gs)
PathPaintingRenderInfo(int operation, GraphicsState gs)
If the operation isPathPaintingRenderInfo.NO_OP
then the rule is ignored, otherwisePathPaintingRenderInfo.NONZERO_WINDING_RULE
is used by default.TextRenderInfo(PdfString string, GraphicsState gs, Matrix textMatrix, java.util.Collection<MarkedContentInfo> markedContentInfo)
Creates a new TextRenderInfo object
-