Ancestor type: CObject
This type of object represents pdf operator in content stream
bool equals(QObject* otherObject)
Return true, if this object is equal to specified object (i.e. if they internally point to the same item) Reference is compared, not the value of objects
Return bounding box (rectangle) of this PDF operator
PdfOperator getLastOperator()
Return last operator if a this operator is a composite
bool containsNonStrokingOperator()
Tries to find first non stroking operator. (some operators are modified by stroking operators, some by nonestroking) Return true if non stroking operator found, false otherwise.
bool containsStrokingOperator()
Tries to find first stroking operator. (some operators are modified by stroking operators, some by nonestroking) Return true if stroking operator found, false otherwise.
PdfOperatorIterator iterator()
Return PDF Operator iterator, initially pointing at this operator
PdfOperatorIterator graphicalIterator(bool forwardDir=true)
Return PDF Graphical Operator iterator, initialialized from this operator Graphical iterator iterate only through Graphical operators in content stream
PdfOperatorIterator inlineImageIterator(bool forwardDir=true)
Return PDF Inline Image Operator iterator, initialialized from this operator Inline Image iterator iterate only through inline image operators in content stream
PdfOperatorIterator textIterator(bool forwardDir=true)
Return PDF Text Operator iterator, initialialized from this operator Text iterator iterate only through text operators in content stream
PdfOperatorIterator changeableIterator(bool forwardDir=true)
Return PDF Changeable Operator iterator, initialialized from this operator Font iterator iterate only through changeable operators in content stream
PdfOperatorIterator strokingIterator(bool forwardDir=true)
Return PDF Stroking Operator iterator, initialialized from this operator Font iterator iterate only through stroking operators in content stream
PdfOperatorIterator nonStrokingIterator(bool forwardDir=true)
Return PDF Non stroking Operator iterator, initialialized from this operator Font iterator iterate only through non-stroking operators in content stream
PdfOperatorIterator fontIterator(bool forwardDir=true)
Return PDF Font Operator iterator, initialialized from this operator Font iterator iterate only through font operators in content stream
PdfOperatorStack childs()
Returns stack with all child operators
Returns number of child operators under this pdf operator
Return text representation of this pdf operator
Returns encoded text from text operator. Returns an empty string for all other operators.
Return name of this pdf operator
Returns parameters of this operator in array
Returns number of parameters in this pdf operator
void pushBack(PdfOperator op,PdfOperator prev)
Add an operator oper to the end of composite operator prev The operator will be added after operator prev. Second parameter is optional and will default to null operator if not specified
Remove this PDF operator from its ContentStream. After calling this function, this object became invalid and must not be used further, doing so may result in an exception
void setNext(PdfOperator op)
Set next operator
void setPrev(PdfOperator op)
Set previous operator
Return content stream in which this operator is contained May return NULL if the stream is not known or if this operator is not contained in any content stream