}
}
if (captureFile != null) {
File file = new File(System.getProperty(Constants.PROP_IMAGE_CAPTURE_DIR), captureFile);
try {
ImagePanel imagePanel = new ImagePanel(new FileInputStream(file), false);
ArrayList<Annotation> annotations = imagePanel.getAnnotations();
printWriter.println(indent + " " + "<annotations>");
for (Annotation a : annotations) {
printWriter.println(indent + " " + "<annotation x=\"" + a.x + "\" y=\"" + a.y + "\" w=\"" + a.width
+ "\" h=\"" + a.height + "\" text=\"" + quoteCharacters(a.getText()) + "\"/>");
}