My image creation works fine. I'm trying to add a hyperlink on it.
The target xml in Word is :
<w:drawing>
<wp:inline distT="0" distB="0" distL="0" distR="0">
<wp:extent cx="1800000" cy="466394"/><wp:effectExtent l="19050" t="0" r="0" b="0"/>
<wp:docPr id="9999" name="ABC.png" descr="ABC">
<a:hlinkClick xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" r:id="rId7"/>
</wp:docPr>
I have used the Hyperlink sample to do this :
Inline inline = img.createImageInline("ABC.png", "ABC", 9999, 9998, false);
...
inline.getDocPr().setHlinkClick(createImageHyperLink(url));
...
public CTHyperlink createImageHyperLink(String url) throws JAXBException {
//add relationship to document
ObjectFactory ...