Interface IAnnotationFlattener
-
- All Known Implementing Classes:
AbstractTextMarkupAnnotationFlattener
,DefaultAnnotationFlattener
,HighLightTextMarkupAnnotationFlattener
,NotSupportedFlattener
,RemoveWithoutDrawingFlattener
,SquigglyTextMarkupAnnotationFlattener
,StrikeOutTextMarkupAnnotationFlattener
,UnderlineTextMarkupAnnotationFlattener
,WarnFormfieldFlattener
public interface IAnnotationFlattener
Interface for annotation flatten workers. This interface is then used inPdfAnnotationFlattener
to flatten annotations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
flatten(PdfAnnotation annotation, PdfPage page)
Flatten annotation.
-
-
-
Method Detail
-
flatten
boolean flatten(PdfAnnotation annotation, PdfPage page)
Flatten annotation.- Parameters:
annotation
- annotation to flattenpage
- page to flatten annotation on- Returns:
- true if annotation was flattened, false otherwise
-
-