// For complete examples and data files, please go to https://github.com/groupdocs-annotation/GroupDocs.Annotation-for-Java
try {
AnnotationConfig cfg = Utilities.getConfiguration();
AnnotationImageHandler annotator = new AnnotationImageHandler(cfg);
InputStream cleanDoc = new FileInputStream(Utilities.storagePath + File.separator + fileName);
List<AnnotationInfo> annotations = new ArrayList<AnnotationInfo>();
// init possible types of annotations
AnnotationInfo resourceRedactionAnnotation = new AnnotationInfo();
resourceRedactionAnnotation.setBox(new Rectangle(69f, 337f, 449f, 118f));
resourceRedactionAnnotation.setPageNumber(1);
resourceRedactionAnnotation.setType(AnnotationType.ResourcesRedaction);
annotations.add(resourceRedactionAnnotation);
// Add annotation to the document
InputStream result = annotator.exportAnnotationsToDocument(cleanDoc, annotations, DocumentType.Words);
// Save result stream to file.
OutputStream fileStream = new FileOutputStream(
Utilities.outputPath + File.separator + "words-annotated.docx");
System.out.println(result.available());
IOUtils.copy(result, fileStream);
} catch (Exception e) {
System.out.println("Exception: " + e.getMessage());
e.printStackTrace();
}