public TextRedactionAnnotator(AnnotationDataEntity annotationData, PageInfo pageInfo)
     : base(annotationData, pageInfo)
 {
     textRedactionAnnotation = new TextRedactionAnnotation
     {
         Points = GetPoints(annotationData, pageInfo)
     };
 }
 public override AnnotationBase AnnotatePdf()
 {
     textRedactionAnnotation = InitAnnotationBase(textRedactionAnnotation) as TextRedactionAnnotation;
     return(textRedactionAnnotation);
 }
 public override AnnotationBase AnnotateImage()
 {
     textRedactionAnnotation        = InitAnnotationBase(textRedactionAnnotation) as TextRedactionAnnotation;
     textRedactionAnnotation.Points = GetPointsForImages(annotationData, pageInfo);
     return(textRedactionAnnotation);
 }