AttributesImpl attrs = imgNode.getAttributes();
if (imgNode.getModification().getType() == ModificationType.REMOVED)
attrs.addAttribute("", "changeType", "changeType", "CDATA",
"diff-removed-image");
else if (imgNode.getModification().getType() == ModificationType.ADDED)
attrs.addAttribute("", "changeType", "changeType", "CDATA",
"diff-added-image");
handler.startElement("", "img", "img", attrs);
handler.endElement("", "img", "img");
}