Class PdfCanvasProcessor.MoveNextLineAndShowTextWithSpacingOperator
- java.lang.Object
-
- com.itextpdf.kernel.pdf.canvas.parser.PdfCanvasProcessor.MoveNextLineAndShowTextWithSpacingOperator
-
- All Implemented Interfaces:
IContentOperator
- Enclosing class:
- PdfCanvasProcessor
private static class PdfCanvasProcessor.MoveNextLineAndShowTextWithSpacingOperator extends java.lang.Object implements IContentOperator
A handler that implements operator ("). For more information see Table 51 ISO-32000-1
-
-
Field Summary
Fields Modifier and Type Field Description private PdfCanvasProcessor.MoveNextLineAndShowTextOperator
moveNextLineAndShowText
private PdfCanvasProcessor.SetTextCharacterSpacingOperator
setTextCharacterSpacing
private PdfCanvasProcessor.SetTextWordSpacingOperator
setTextWordSpacing
-
Constructor Summary
Constructors Constructor Description MoveNextLineAndShowTextWithSpacingOperator(PdfCanvasProcessor.SetTextWordSpacingOperator setTextWordSpacing, PdfCanvasProcessor.SetTextCharacterSpacingOperator setTextCharacterSpacing, PdfCanvasProcessor.MoveNextLineAndShowTextOperator moveNextLineAndShowText)
Create new instance of this handler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
invoke(PdfCanvasProcessor processor, PdfLiteral operator, java.util.List<PdfObject> operands)
Called when a content operator should be processed.
-
-
-
Field Detail
-
setTextWordSpacing
private final PdfCanvasProcessor.SetTextWordSpacingOperator setTextWordSpacing
-
setTextCharacterSpacing
private final PdfCanvasProcessor.SetTextCharacterSpacingOperator setTextCharacterSpacing
-
moveNextLineAndShowText
private final PdfCanvasProcessor.MoveNextLineAndShowTextOperator moveNextLineAndShowText
-
-
Constructor Detail
-
MoveNextLineAndShowTextWithSpacingOperator
public MoveNextLineAndShowTextWithSpacingOperator(PdfCanvasProcessor.SetTextWordSpacingOperator setTextWordSpacing, PdfCanvasProcessor.SetTextCharacterSpacingOperator setTextCharacterSpacing, PdfCanvasProcessor.MoveNextLineAndShowTextOperator moveNextLineAndShowText)
Create new instance of this handler.- Parameters:
setTextWordSpacing
- the handler for Tw operatorsetTextCharacterSpacing
- the handler for Tc operatormoveNextLineAndShowText
- the handler for ' operator
-
-
Method Detail
-
invoke
public void invoke(PdfCanvasProcessor processor, PdfLiteral operator, java.util.List<PdfObject> operands)
Called when a content operator should be processed.- Specified by:
invoke
in interfaceIContentOperator
- Parameters:
processor
- The processor that is dealing with the PDF content stream.operator
- The literal PDF syntax of the operator.operands
- The operands that come with the operator.
-
-